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.
- package/index.js +5 -5
- 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
|
-
|
|
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)
|