@creopse/vue 0.0.4 → 0.0.6
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/dist/index.cjs +33 -41
- package/dist/index.js +33 -41
- package/dist/index.mjs +7606 -7938
- package/package.json +1 -1
- package/types/index.d.ts +5 -2
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { type Pinia } from 'pinia';
|
|
1
2
|
import type { App } from 'vue';
|
|
2
3
|
import AsyncImg from './components/widgets/AsyncImg.vue';
|
|
3
4
|
import CustomTransition from './components/widgets/CustomTransition.vue';
|
|
@@ -8,8 +9,11 @@ import Page from './layouts/Page.vue';
|
|
|
8
9
|
import Container from './pages/Container.vue';
|
|
9
10
|
import NotFound from './pages/NotFound.vue';
|
|
10
11
|
declare const plugin: {
|
|
11
|
-
install(app: App
|
|
12
|
+
install(app: App, options: {
|
|
13
|
+
pinia?: Pinia;
|
|
14
|
+
}): void;
|
|
12
15
|
};
|
|
16
|
+
export default plugin;
|
|
13
17
|
export * from './constants';
|
|
14
18
|
export * from './composables/api';
|
|
15
19
|
export * from './composables/helper';
|
|
@@ -20,4 +24,3 @@ export * from './stores/auth';
|
|
|
20
24
|
export * from './stores/news';
|
|
21
25
|
export * from './stores/user-interface';
|
|
22
26
|
export { CustomTransition, SvgComponent, AsyncImg, Image, AuthPage, Page, Container, NotFound, };
|
|
23
|
-
export default plugin;
|