Files
ZangShiQi/app/component/view/horz_line/js/design.js
2026-04-04 17:27:12 +08:00

13 lines
455 B
JavaScript
Executable File

var horzLineHtml = '<div></div>';
Vue.component("horz-line-set",{
data: function () {
return {
};
},
created : function(){
this.$parent.data.ignore = ['textColor','componentBgColor','elementBgColor','componentAngle','elementAngle'];//加载忽略内容 -- 其他设置中的属性设置
this.$parent.data.ignoreLoad = true; // 等待忽略数组赋值后加载
},
template: horzLineHtml
});