partially working, index page does not update when route is changed

This commit is contained in:
Moriz Wahl 2020-02-11 09:27:28 +01:00
parent e236838523
commit 16ad565ec8

View 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>