部署列表
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user