Element 组件对象属性用法

image.png
  ...
  computed: {
    bindProps() {
      /* this.configs 可以动态变更,优先级高于this.$attrs */
      return merge(
        {
          headerAlign: "center",
          align: "center",
        },
        this.$attrs,
        /* configs formitem type 与 el column typ 冲突 需要剔除 */
        omit(this.configs, ["type"])
       /*
        configs:{
            label:"label",
            prop:"prop"
        }
      */
      );
    },
  },

你可能感兴趣的:(Element 组件对象属性用法)