🐛: 修复 withInstall

This commit is contained in:
sight
2022-05-15 03:17:00 +08:00
parent f972c94f55
commit 334699b210
82 changed files with 238 additions and 241 deletions

View File

@@ -1,5 +1,5 @@
import { withInstall } from "../utils";
import { withInstall, WithInstallType } from "../utils";
import Component from "./index.vue";
const component = withInstall(Component);
const component: WithInstallType<typeof Component> = withInstall(Component);
export default component;