some basic views

This commit is contained in:
vabene1111
2024-02-21 20:18:54 +01:00
parent 1e6e843e05
commit 5587429475
121 changed files with 23617 additions and 34 deletions

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