Skip to content

Commit

Permalink
fix(vue-renderless): [base-select] fix site: Optimize site documentat…
Browse files Browse the repository at this point in the history
…ion typesetting
  • Loading branch information
dufu1991 committed Dec 26, 2024
1 parent b57dc9e commit a085874
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { ref } from 'vue'
import { TinyBaseSelect, TinyModal } from '@opentiny/vue'
const buildOptions = () =>
Array.from({ length: 100000 }).map((item, i) => JSON.parse(`{"value":"选项${i}","label":"北京${i}"}`))
Array.from({ length: 100000 }).map((item, i) => JSON.parse(`{"value":"选项 ${i}","label":"北京 ${i}"}`))
const value1 = ref('')
const value2 = ref([])
Expand Down
2 changes: 1 addition & 1 deletion examples/sites/demos/pc/app/base-select/optimization.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import { TinyBaseSelect, TinyModal } from '@opentiny/vue'
const buildOptions = () =>
Array.from({ length: 100000 }).map((item, i) => JSON.parse(`{"value":"选项${i}","label":"北京${i}"}`))
Array.from({ length: 100000 }).map((item, i) => JSON.parse(`{"value":"选项 ${i}","label":"北京 ${i}"}`))
export default {
components: {
Expand Down

0 comments on commit a085874

Please sign in to comment.