-
Notifications
You must be signed in to change notification settings - Fork 0
myLinkedSelect
daniel edited this page Apr 25, 2025
·
4 revisions
多層聯級選單
const props = defineProps({
data: {
type: Array,
required: true
}
})
通过 defineProps 明确告诉 Vue,我们要从外部拿一个名为 data 的数组。
计算属性都改成基于 props.data
const countries = computed(() => props.data.map(d => d.country))
其他 cities、schools、filteredSchools 也是一样,都是从 props.data 中找对应的条目来生成列表。
-
Vue Dev Map ( Vue 開發與 JS 語法對照 )