mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-02 04:39:54 -05:00
some basic views
This commit is contained in:
22
vue3/src/components/display/KeywordsComponent.vue
Normal file
22
vue3/src/components/display/KeywordsComponent.vue
Normal file
@@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<v-chip color="info" size="x-small" v-for="k in keywords"> {{ k?.label }} </v-chip>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
|
||||
import {Keyword} from "@/openapi";
|
||||
|
||||
export default {
|
||||
name: 'KeywordsComponent',
|
||||
mixins: [],
|
||||
props: {
|
||||
keywords: [] as Keyword[],
|
||||
},
|
||||
computed: {
|
||||
|
||||
},
|
||||
methods: {
|
||||
|
||||
}
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user