Refactor(ALL):Vue3同步调整为Vue2

This commit is contained in:
lifizer
2024-02-29 10:46:13 +08:00
parent f3115fe7c8
commit 017bb4a66a
13 changed files with 1805 additions and 1930 deletions
+7 -1
View File
@@ -13,6 +13,12 @@ export default {
defaultState: {
type: Boolean,
default: false
},
mark: {
type: Array,
default: () => {
return []
}
}
},
data() {
@@ -27,7 +33,7 @@ export default {
},
methods: {
change() {
this.$emit('change', !this.isSelected)
this.$emit('change', !this.isSelected, this.mark)
}
}
}