doc: Update automatic-tokenization.vue (#4847)

value 为数组类型,不是字符串类型
pull/4861/head
萤火 2021-11-05 09:12:40 +08:00 committed by GitHub
parent 6dfc8375c8
commit 61afa1571f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ export default defineComponent({
},
]);
const value = ref<string[]>([]);
const handleChange = (value: string) => {
const handleChange = (value: []) => {
console.log(`selected ${value}`);
};
watch(value, () => {