uview-pro 0.0.1 → 0.0.2

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/changelog.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.0.2(2025-08-04)
2
+
3
+ - 解决一些 npm 包依赖问题
4
+
1
5
  ## 0.0.1(2025-08-04)
2
6
 
3
7
  - 兼容安卓,iOS,微信小程序,H5 等
@@ -58,7 +58,7 @@
58
58
 
59
59
  <script setup lang="ts">
60
60
  import { ref, computed, nextTick } from 'vue';
61
- import { $u } from '@/uni_modules/uview-pro';
61
+ import { $u } from '../../';
62
62
 
63
63
  defineOptions({
64
64
  name: 'u-button'
@@ -206,7 +206,7 @@ function click(e: any) {
206
206
  });
207
207
  }
208
208
  emit('click', e);
209
- }, props.throttleTime);
209
+ }, Number(props.throttleTime));
210
210
  }
211
211
 
212
212
  /**
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "id": "uview-pro",
3
3
  "name": "uview-pro",
4
4
  "displayName": "uView Pro,是uni-app全面兼容vue3的uni-app生态框架,全面的组件和便捷的工具会让您信手拈来,如鱼得水。",
5
- "version": "0.0.1",
5
+ "version": "0.0.2",
6
6
  "description": "uView Pro,是uni-app全面兼容vue3的uni-app生态框架,全面的组件和便捷的工具会让您信手拈来,如鱼得水。uView Pro的基线版本基于uView1.8.8修改,使用TypeScript重构,目前已全面支持uni-app Vue3.0",
7
7
  "main": "index.ts",
8
8
  "module": "index.ts",