@ibiz-template/mob-vue3-components 0.0.11 → 0.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -121,7 +121,7 @@ const IBizSpan = /* @__PURE__ */ defineComponent({
121
121
  content = "";
122
122
  }
123
123
  return createVNode("span", {
124
- "class": [this.ns.b(), this.readonly ? this.ns.m("readonly") : "", this.readonly ? this.ns.m("disabled") : ""],
124
+ "class": [this.ns.b(), this.readonly ? this.ns.m("readonly") : "", this.disabled ? this.ns.m("disabled") : ""],
125
125
  "ref": "editorRef"
126
126
  }, [content]);
127
127
  }
@@ -123,7 +123,7 @@ const IBizSpan = /* @__PURE__ */ vue.defineComponent({
123
123
  content = "";
124
124
  }
125
125
  return vue.createVNode("span", {
126
- "class": [this.ns.b(), this.readonly ? this.ns.m("readonly") : "", this.readonly ? this.ns.m("disabled") : ""],
126
+ "class": [this.ns.b(), this.readonly ? this.ns.m("readonly") : "", this.disabled ? this.ns.m("disabled") : ""],
127
127
  "ref": "editorRef"
128
128
  }, [content]);
129
129
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz-template/mob-vue3-components",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "description": "使用 rollup 编译 vue 组件或者 jsx",
5
5
  "main": "lib/index.cjs",
6
6
  "module": "es/index.mjs",