3h1-ui 2.2.0 → 2.2.1
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/es/index.js +7 -1
- package/lib/index.js +7 -1
- package/package.json +1 -1
package/es/index.js
CHANGED
|
@@ -16068,7 +16068,13 @@ const _sfc_main$8 = defineComponent({
|
|
|
16068
16068
|
const instance = getCurrentInstance();
|
|
16069
16069
|
instance && emit("register", drawerInstance, instance.uid);
|
|
16070
16070
|
const getMergeProps = computed(() => {
|
|
16071
|
-
return
|
|
16071
|
+
return {
|
|
16072
|
+
...deepMerge$1(toRaw(props2), unref(propsRef)),
|
|
16073
|
+
...{ title: props2.title }
|
|
16074
|
+
};
|
|
16075
|
+
});
|
|
16076
|
+
watchEffect(() => {
|
|
16077
|
+
getMergeProps.value;
|
|
16072
16078
|
});
|
|
16073
16079
|
const getProps = computed(() => {
|
|
16074
16080
|
const opt = {
|
package/lib/index.js
CHANGED
|
@@ -16070,7 +16070,13 @@ const _sfc_main$8 = vue.defineComponent({
|
|
|
16070
16070
|
const instance = vue.getCurrentInstance();
|
|
16071
16071
|
instance && emit("register", drawerInstance, instance.uid);
|
|
16072
16072
|
const getMergeProps = vue.computed(() => {
|
|
16073
|
-
return
|
|
16073
|
+
return {
|
|
16074
|
+
...utils.deepMerge(vue.toRaw(props2), vue.unref(propsRef)),
|
|
16075
|
+
...{ title: props2.title }
|
|
16076
|
+
};
|
|
16077
|
+
});
|
|
16078
|
+
vue.watchEffect(() => {
|
|
16079
|
+
getMergeProps.value;
|
|
16074
16080
|
});
|
|
16075
16081
|
const getProps = vue.computed(() => {
|
|
16076
16082
|
const opt = {
|