some more things in recipe view

This commit is contained in:
vabene1111
2024-02-24 11:14:58 +01:00
parent d53706bd5d
commit 1842bb7105
8 changed files with 144 additions and 65 deletions

View File

@@ -0,0 +1,21 @@
<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: 'KeywordsBar',
mixins: [],
props: {
keywords: Array as PropType<Array<Keyword>>,
},
computed: {},
methods: {}
}
</script>