mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
partially working, index page does not update when route is changed
This commit is contained in:
parent
e236838523
commit
16ad565ec8
23
webapp/components/generic/SearchTag/SearchTag.vue
Normal file
23
webapp/components/generic/SearchTag/SearchTag.vue
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
<template>
|
||||||
|
<ds-flex class="search-tag">
|
||||||
|
<ds-flex-item class="search-tag-label">
|
||||||
|
<ds-text>#{{ option.id }}</ds-text>
|
||||||
|
</ds-flex-item>
|
||||||
|
</ds-flex>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'SearchTag',
|
||||||
|
props: {
|
||||||
|
option: { type: Object, required: true },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<style lang="scss">
|
||||||
|
.search-tag {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.search-tag-label {
|
||||||
|
color: $text-color-primary;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
Loading…
x
Reference in New Issue
Block a user