itube-specs 0.0.698 → 0.0.699

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.
@@ -106,7 +106,9 @@ function close() {
106
106
  open.value = false;
107
107
 
108
108
  if (isTablet.value) {
109
- menuRef.value?.close?.();
109
+ nextTick(() => {
110
+ menuRef.value?.close?.()
111
+ })
110
112
  }
111
113
  }
112
114
 
@@ -122,7 +124,6 @@ watch(open, (val) => {
122
124
  onBeforeUnmount(() => {
123
125
  if (open.value && isTablet.value) {
124
126
  scrollUnlock();
125
- menuRef.value?.close?.();
126
127
  }
127
128
  });
128
129
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "itube-specs",
3
3
  "type": "module",
4
- "version": "0.0.698",
4
+ "version": "0.0.699",
5
5
  "main": "./nuxt.config.ts",
6
6
  "types": "./types/index.d.ts",
7
7
  "scripts": {