@fy-/fws-vue 0.0.2 → 0.0.3
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.ts +2 -2
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -16,6 +16,7 @@ import {
|
|
|
16
16
|
formatDatetime,
|
|
17
17
|
formatTimeago,
|
|
18
18
|
} from "./templating";
|
|
19
|
+
import { useRest } from "./rest";
|
|
19
20
|
export * from "./stores/serverRouter";
|
|
20
21
|
|
|
21
22
|
// Components/UI/Transitions
|
|
@@ -30,7 +31,6 @@ import DefaultInput from "./components/ui/DefaultInput.vue";
|
|
|
30
31
|
import DefaultModal from "./components/ui/DefaultModal.vue";
|
|
31
32
|
import DefaultConfirm from "./components/ui/DefaultConfirm.vue";
|
|
32
33
|
import DefaultPaging from "./components/ui/DefaultPaging.vue";
|
|
33
|
-
import DefaultLoading from "./components/ui/DefaultLoading.vue";
|
|
34
34
|
import DefaultBreadcrumb from "./components/ui/DefaultBreadcrumb.vue";
|
|
35
35
|
import DefaultLoader from "./components/ui/DefaultLoader.vue";
|
|
36
36
|
|
|
@@ -96,6 +96,7 @@ export {
|
|
|
96
96
|
useSeo,
|
|
97
97
|
useUserStore,
|
|
98
98
|
useUserCheck,
|
|
99
|
+
useRest,
|
|
99
100
|
|
|
100
101
|
// Components
|
|
101
102
|
// UI/Transitions
|
|
@@ -110,7 +111,6 @@ export {
|
|
|
110
111
|
DefaultModal,
|
|
111
112
|
DefaultConfirm,
|
|
112
113
|
DefaultPaging,
|
|
113
|
-
DefaultLoading,
|
|
114
114
|
DefaultBreadcrumb,
|
|
115
115
|
DefaultLoader,
|
|
116
116
|
|