chore: remove dead code (#8472)

This commit is contained in:
neverland
2021-04-08 10:00:52 +08:00
committed by GitHub
parent 56429ad4e1
commit 9f93dd9d61

View File

@@ -1,13 +0,0 @@
import { App } from 'vue';
import { camelize } from './format/string';
export function installable<T>(options: T) {
return {
...options,
install(app: App) {
const { name } = options as any;
app.component(name, options);
app.component(camelize(`-${name}`), options);
},
};
}