You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
401 B
21 lines
401 B
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";
|
|
|