mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 20:28:46 -05:00
22 lines
382 B
Vue
22 lines
382 B
Vue
<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";
|
|
import {PropType} from "vue";
|
|
|
|
export default {
|
|
name: 'KeywordsComponent',
|
|
mixins: [],
|
|
props: {
|
|
keywords: Array as PropType<Array<Keyword>>,
|
|
},
|
|
computed: {},
|
|
methods: {}
|
|
}
|
|
</script>
|