diff --git a/examples/sites/demos/pc/app/base-select/all-text-composition-api.vue b/examples/sites/demos/pc/app/base-select/all-text-composition-api.vue index 2a6a1abdab..bc99ab39f5 100644 --- a/examples/sites/demos/pc/app/base-select/all-text-composition-api.vue +++ b/examples/sites/demos/pc/app/base-select/all-text-composition-api.vue @@ -11,11 +11,11 @@ import { ref } from 'vue' import { TinyBaseSelect, TinyOption } from '@opentiny/vue' const options = ref([ - { value: '选项1', label: '黄金糕' }, - { value: '选项2', label: '双皮奶' }, - { value: '选项3', label: '蚵仔煎' }, - { value: '选项4', label: '龙须面' }, - { value: '选项6', label: '螺蛳粉' } + { value: '选项 1', label: '黄金糕' }, + { value: '选项 2', label: '双皮奶' }, + { value: '选项 3', label: '蚵仔煎' }, + { value: '选项 4', label: '龙须面' }, + { value: '选项 6', label: '螺蛳粉' } ]) const value = ref([]) diff --git a/examples/sites/demos/pc/app/base-select/all-text.vue b/examples/sites/demos/pc/app/base-select/all-text.vue index e82f327fe5..726d47861b 100644 --- a/examples/sites/demos/pc/app/base-select/all-text.vue +++ b/examples/sites/demos/pc/app/base-select/all-text.vue @@ -18,11 +18,11 @@ export default { return { value: [], options: [ - { value: '选项1', label: '黄金糕' }, - { value: '选项2', label: '双皮奶' }, - { value: '选项3', label: '蚵仔煎' }, - { value: '选项4', label: '龙须面' }, - { value: '选项6', label: '螺蛳粉' } + { value: '选项 1', label: '黄金糕' }, + { value: '选项 2', label: '双皮奶' }, + { value: '选项 3', label: '蚵仔煎' }, + { value: '选项 4', label: '龙须面' }, + { value: '选项 6', label: '螺蛳粉' } ] } } diff --git a/examples/sites/demos/pc/app/base-select/allow-create-composition-api.vue b/examples/sites/demos/pc/app/base-select/allow-create-composition-api.vue index eb69906498..3e2a5d25f2 100644 --- a/examples/sites/demos/pc/app/base-select/allow-create-composition-api.vue +++ b/examples/sites/demos/pc/app/base-select/allow-create-composition-api.vue @@ -1,20 +1,20 @@