first few pieces

This commit is contained in:
vabene1111
2024-02-21 22:06:07 +01:00
parent 5587429475
commit b0e01e13bf
7 changed files with 135 additions and 50 deletions

View File

@@ -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>