feat: 资产授权.
This commit is contained in:
@@ -41,7 +41,7 @@
|
||||
title: String,
|
||||
options: {
|
||||
type: Array as PropType<OptionsProps[]>,
|
||||
default: []
|
||||
default: () => []
|
||||
},
|
||||
});
|
||||
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
},
|
||||
options: {
|
||||
type: Array as PropType<Array<RadioOption | SelectOption>>,
|
||||
default: []
|
||||
default: () => []
|
||||
}
|
||||
});
|
||||
const emit = defineEmits(['inputChange']);
|
||||
|
||||
@@ -68,7 +68,9 @@
|
||||
const props = defineProps({
|
||||
itemData: {
|
||||
type: Object as PropType<TagProps>,
|
||||
default: [],
|
||||
default: () => {
|
||||
return {};
|
||||
}
|
||||
},
|
||||
index: {
|
||||
type: Number,
|
||||
|
||||
@@ -108,7 +108,7 @@
|
||||
},
|
||||
checkedKeys: {
|
||||
type: Array<Number>,
|
||||
default: []
|
||||
default: () => []
|
||||
}
|
||||
});
|
||||
const emits = defineEmits(['loading', 'selectNode', 'update:checkedKeys']);
|
||||
|
||||
Reference in New Issue
Block a user