design.js 405 B

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