From 8a175fe8bb0d49cafbf8567eb84eb833ac11b094 Mon Sep 17 00:00:00 2001 From: Aex Date: Fri, 29 Oct 2021 11:55:45 +0800 Subject: [PATCH] revert(play): component use (#4079) --- play/main.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/play/main.ts b/play/main.ts index 0b4dd7c50b..305d2f85bc 100644 --- a/play/main.ts +++ b/play/main.ts @@ -1,9 +1,8 @@ import { createApp } from 'vue' import App from './src/App.vue' -import { useComponent } from './src/use' import '@element-plus/theme-chalk/src/index.scss' const app = createApp(App) -useComponent(app) + app.mount('#play')