chore: better variable typing
This commit is contained in:
parent
6f93d6343c
commit
42e72d14a4
7 changed files with 10 additions and 8 deletions
|
|
@ -38,7 +38,7 @@ const emit = defineEmits(['update:modelValue'])
|
|||
const store = useStore()
|
||||
const {t} = useI18n({useScope: 'global'})
|
||||
|
||||
const list = reactive<ListModel>(new ListModel())
|
||||
const list: ListModel= reactive(new ListModel())
|
||||
|
||||
watch(
|
||||
() => props.modelValue,
|
||||
|
|
|
|||
Reference in a new issue