ninemoon-ui 0.0.17 → 0.0.18
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.
- package/dist/index.umd.js +1 -1
- package/dist/js/tabs/tabs.js +1 -1
- package/package.json +1 -1
package/dist/index.umd.js
CHANGED
|
@@ -5234,7 +5234,7 @@
|
|
|
5234
5234
|
const changeHandle = (name) => {
|
|
5235
5235
|
emit("update:active", name);
|
|
5236
5236
|
};
|
|
5237
|
-
const noactive = vue.
|
|
5237
|
+
const noactive = vue.computed(() => props.active != null);
|
|
5238
5238
|
const activename = vue.ref("");
|
|
5239
5239
|
const currentActive = vue.computed({
|
|
5240
5240
|
set(val) {
|
package/dist/js/tabs/tabs.js
CHANGED
|
@@ -18,7 +18,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
18
18
|
const changeHandle = (name) => {
|
|
19
19
|
emit("update:active", name);
|
|
20
20
|
};
|
|
21
|
-
const noactive =
|
|
21
|
+
const noactive = computed(() => props.active != null);
|
|
22
22
|
const activename = ref("");
|
|
23
23
|
const currentActive = computed({
|
|
24
24
|
set(val) {
|