Missing SearchTag.vue added

This commit is contained in:
Moriz Wahl 2020-01-06 16:59:55 +01:00
parent 71c9d92aea
commit d2088a3a92

View File

@ -0,0 +1,18 @@
<template>
<ds-flex-item>
<span class="hashtag-search-text">#{{ option.id }}</span>
</ds-flex-item>
</template>
<script>
export default {
name: 'SearchTag',
props: {
option: { type: Object, required: true },
},
}
</script>
<style lang="scss">
.hashtag-search-text {
color: rgb(23, 181, 63);
}
</style>