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