@neatui/nuxt 1.4.0 → 1.5.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neatui/nuxt",
3
- "version": "1.4.0",
3
+ "version": "1.5.0",
4
4
  "description": "NeatUI component library for Nuxt 3",
5
5
  "main": "./src/index.ts",
6
6
  "license": "MIT",
@@ -18,7 +18,17 @@
18
18
  <script lang="ts" setup>
19
19
  import { onBeforeUnmount, reactive, watch } from 'vue';
20
20
  import { isFunction } from '@fekit/utils';
21
- import { _tasks, getActiveLayer } from './index';
21
+
22
+ // 弹层队列
23
+ if (!(window as any)._FEKIT_LAYER_TASKS) {
24
+ (window as any)._FEKIT_LAYER_TASKS = {};
25
+ }
26
+ const _tasks: any = (window as any)._FEKIT_LAYER_TASKS;
27
+
28
+ // 获取活跃的弹层
29
+ const getActiveLayer = () => {
30
+ return Object.values(_tasks).filter((task: any) => task.view > 0);
31
+ };
22
32
 
23
33
  // 类型定义
24
34
  interface Props {
@@ -207,7 +217,6 @@
207
217
 
208
218
  // 卸载弹层
209
219
  onBeforeUnmount(() => {
210
- // eslint-disable-next-line @typescript-eslint/no-dynamic-delete
211
220
  delete _tasks[id];
212
221
  });
213
222
  </script>
@@ -1,8 +1,5 @@
1
- export const _tasks: any = {};
2
- export const _state: any = {};
3
- export const getActiveLayer = () => {
4
- return Object.values(_tasks).filter((task: any) => task.view > 0);
5
- };
6
- export const LayerById = (id: any) => {
7
- return _tasks[id];
1
+ import Layer from './Layer.vue';
2
+ const LayerById = (id: any) => {
3
+ return (window as any)._FEKIT_LAYER_TASKS[id];
8
4
  };
5
+ export { Layer, LayerById };