Skip to content

Commit a085874

Browse files
committed
fix(vue-renderless): [base-select] fix site: Optimize site documentation typesetting
1 parent b57dc9e commit a085874

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/sites/demos/pc/app/base-select/optimization-composition-api.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import { ref } from 'vue'
2020
import { TinyBaseSelect, TinyModal } from '@opentiny/vue'
2121
2222
const buildOptions = () =>
23-
Array.from({ length: 100000 }).map((item, i) => JSON.parse(`{"value":"选项${i}","label":"北京${i}"}`))
23+
Array.from({ length: 100000 }).map((item, i) => JSON.parse(`{"value":"选项 ${i}","label":"北京 ${i}"}`))
2424
2525
const value1 = ref('')
2626
const value2 = ref([])

examples/sites/demos/pc/app/base-select/optimization.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import { TinyBaseSelect, TinyModal } from '@opentiny/vue'
2020
2121
const buildOptions = () =>
22-
Array.from({ length: 100000 }).map((item, i) => JSON.parse(`{"value":"选项${i}","label":"北京${i}"}`))
22+
Array.from({ length: 100000 }).map((item, i) => JSON.parse(`{"value":"选项 ${i}","label":"北京 ${i}"}`))
2323
2424
export default {
2525
components: {

0 commit comments

Comments
 (0)