From 9f93dd9d6188d71ee93451d7a31f500fdcfc614f Mon Sep 17 00:00:00 2001 From: neverland Date: Thu, 8 Apr 2021 10:00:52 +0800 Subject: [PATCH] chore: remove dead code (#8472) --- src/utils/installable.ts | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 src/utils/installable.ts diff --git a/src/utils/installable.ts b/src/utils/installable.ts deleted file mode 100644 index f5810a7e0..000000000 --- a/src/utils/installable.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { App } from 'vue'; -import { camelize } from './format/string'; - -export function installable(options: T) { - return { - ...options, - install(app: App) { - const { name } = options as any; - app.component(name, options); - app.component(camelize(`-${name}`), options); - }, - }; -}