im-ui-mobile 0.0.55 → 0.0.56

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/index.js +5 -5
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { PiniaPlugin } from './plugins/pinia.js'
1
+ // import { PiniaPlugin } from './plugins/pinia.js'
2
2
  import { UViewPlusPlugin } from './plugins/uview-plus.js'
3
3
 
4
4
  const importFn = import.meta.glob('./components/im-*/im-*.vue', { eager: true })
@@ -25,10 +25,10 @@ for (const key in importFn) {
25
25
  }
26
26
 
27
27
  const install = (app, options = {}) => {
28
- // 安装pinia插件
29
- if (options.usePinia !== false) {
30
- app.use(PiniaPlugin, options.piniaOptions)
31
- }
28
+ // // 安装pinia插件
29
+ // if (options.usePinia !== false) {
30
+ // app.use(PiniaPlugin, options.piniaOptions)
31
+ // }
32
32
 
33
33
  // 安装 uview-plus
34
34
  app.use(UViewPlusPlugin)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "im-ui-mobile",
3
- "version": "0.0.55",
3
+ "version": "0.0.56",
4
4
  "description": "A Vue3.0 + typescript instant messaging component library for Uniapp",
5
5
  "type": "module",
6
6
  "main": "index.js",