|
@@ -28,7 +28,8 @@
|
|
@update:modelValue="modelValueUpDate"
|
|
@update:modelValue="modelValueUpDate"
|
|
>
|
|
>
|
|
</v-text-field>
|
|
</v-text-field>
|
|
- <v-menu activator="#menu-activator" :close-on-content-click="item.closeOnContentClick">
|
|
|
|
|
|
+ <!-- close-on-content-click只能false,否则二级无法展开 -->
|
|
|
|
+ <v-menu activator="#menu-activator" :close-on-content-click="false">
|
|
<listGroup
|
|
<listGroup
|
|
:list="item.items"
|
|
:list="item.items"
|
|
:option="option"
|
|
:option="option"
|
|
@@ -69,7 +70,7 @@ const clickUpdate = (val) => {
|
|
emit('update:modelValue', value.value)
|
|
emit('update:modelValue', value.value)
|
|
emit('change', value.value)
|
|
emit('change', value.value)
|
|
}
|
|
}
|
|
-const closeOnContentClick = ref(false) // multiple
|
|
|
|
|
|
+// const closeOnContentClick = ref(false) // multiple
|
|
|
|
|
|
// 回显label
|
|
// 回显label
|
|
const chosen = ref(null)
|
|
const chosen = ref(null)
|