vue3 引入 elementui
时间: 2023-07-03 12:22:38 浏览: 91
vue3按需引入element框架
要在 Vue3 中使用 ElementUI,需要先安装 ElementUI 的依赖:
```bash
npm install element-plus --save
```
然后在 main.js 中引入 ElementUI:
```javascript
import { createApp } from 'vue'
import ElementPlus from 'element-plus'
import 'element-plus/lib/theme-chalk/index.css'
import App from './App.vue'
const app = createApp(App)
app.use(ElementPlus)
app.mount('#app')
```
这样就可以在 Vue3 中使用 ElementUI 了。注意,在 Vue3 中,ElementUI 的组件名需要以 el- 开头,例如 el-button。
阅读全文