6 lines
198 B
TypeScript
Raw Normal View History

2022-05-15 03:17:00 +08:00
import { withInstall, WithInstallType } from "../utils";
2021-12-25 00:09:30 +08:00
import Component from "./index.vue";
2021-10-01 20:22:49 +08:00
2022-05-15 03:17:00 +08:00
const component: WithInstallType<typeof Component> = withInstall(Component);
2022-04-29 22:21:20 +08:00
export default component;