Convert frontend to Vue #3

Merged
jacob1123 merged 158 commits from vue into master 2022-02-08 22:20:11 +01:00
Showing only changes of commit dba1e8c276 - Show all commits

View File

@ -1,5 +1,5 @@
<script lang="ts">
import { defineComponent } from "vue"
import { defineComponent, PropType } from "vue"
interface Suggestion {
ID : string
@ -21,7 +21,7 @@ export default defineComponent({
} as Data
},
props: {
modelValue: String,
modelValue: Object as PropType<Suggestion>,
type: String
},
watch: {