1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| import { router } from "../router";
| import { service } from "../service";
| import { upload } from "../upload";
| import { storage } from "../utils";
| import { useRefs } from "./comm";
|
| export function useCool() {
| return {
| router,
| service,
| upload,
| storage,
| ...useRefs(),
| };
| }
|
| export * from "./app";
| export * from "./comm";
| export * from "./hmr";
| export * from "./pager";
| export * from "./wx";
|
|