-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.ts
More file actions
44 lines (39 loc) · 1.19 KB
/
index.ts
File metadata and controls
44 lines (39 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import type { PageFlip } from "page-flip";
import Book from "./src/components/Book.vue";
import Bookcase from "./src/components/Bookcase.vue";
import InducksStory from "./src/components/InducksStory.vue";
import IssueQuotation from "./src/components/IssueQuotation.vue";
import MedalImage from "./src/components/MedalImage.vue";
import StarRating from "./src/components/StarRating.vue";
import Conditions from "./src/components/stats/ConditionsComponent.vue";
import useCollection from "./src/composables/useCollection";
import useDmSocket from "./src/composables/useDmSocket";
import useMedal from "./src/composables/useMedal";
import { bookcase } from "./src/stores/bookcase";
import { coa } from "./src/stores/coa";
import { collection } from "./src/stores/collection";
import { stats } from "./src/stores/stats";
import { users } from "./src/stores/users";
export const stores = {
coa,
collection,
bookcase,
stats,
users,
};
export const components = {
InducksStory,
MedalImage,
Book,
Bookcase,
StarRating,
Conditions,
IssueQuotation,
};
export const composables = {
useCollection,
useMedal,
useDmSocket,
};
export { PageFlip };
export { default as i18n } from "./src/i18n";