部署列表

This commit is contained in:
cxc
2022-12-20 17:27:12 +08:00
parent 9b33e7e846
commit 750f66aaf4
6 changed files with 49 additions and 45 deletions

View File

@ -58,7 +58,6 @@ function vModel(dataObject, defaultValue) {
this.$emit("input", val);
};
dataObject.on.change = (val) => {
console.log(val, "change");
this.$emit("input", val);
};
}
@ -68,7 +67,6 @@ function mountSlotFiles(confClone, children) {
if (childObjs) {
Object.keys(childObjs).forEach((key) => {
const childFunc = childObjs[key];
console.log(childFunc);
if (confClone.__slot__ && confClone.__slot__[key]) {
children.push(childFunc(confClone, key));
}
@ -220,7 +218,6 @@ export default defineComponent({
render() {
const dataObject = makeDataObject();
const confClone = deepClone(this.$props.conf);
console.log(this.$slots.default, "lot");
const children = [];
// 如果slots文件夹存在与当前tag同名的文件则执行文件中的代码
mountSlotFiles(confClone, children);