design.js 443 B

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