@dcloudio/uni-app-x 0.7.28 → 0.7.29

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types/app.d.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcloudio/uni-app-x",
3
- "version": "0.7.28",
3
+ "version": "0.7.29",
4
4
  "description": "uni-app x types",
5
5
  "typings": "index.d.ts",
6
6
  "author": "DCloud",
package/types/app.d.ts CHANGED
@@ -1002,8 +1002,8 @@ declare module '@vue/runtime-core' {
1002
1002
  }
1003
1003
 
1004
1004
  export interface UniApp {
1005
- $vm: EditorCreateVueAppComponentX,
1006
- vm: EditorCreateVueAppComponentX,
1005
+ $vm: ComponentPublicInstance,
1006
+ vm: ComponentPublicInstance,
1007
1007
  globalData: GlobalData,
1008
1008
  on(eventName: string, callback: Function): void
1009
1009
  once(eventName: string, callback: Function): void