如何将元素 UI 添加到 Vue 3
how to add Element UI to Vue 3
我正在尝试将元素 UI 添加到我的 Vue3 项目中:
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
App.use(ElementUI)
createApp(App).use(store).use(router).mount('#app')
所以我正在关注这个文档 https://element.eleme.io/#/en-US/component/quickstart 但它给了我这个错误:types.js?a742:39 Uncaught TypeError: Cannot read properties of undefined (reading 'prototype')
我不知道我在这方面做错了什么。
你应该使用与 vue 3 兼容的 element-plus
:
安装:
npm install element-plus --save
用法:
import { createApp } from 'vue'
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
import App from './App.vue'
const app = createApp(App)
app.use(ElementPlus)
app.mount('#app')
我正在尝试将元素 UI 添加到我的 Vue3 项目中:
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
App.use(ElementUI)
createApp(App).use(store).use(router).mount('#app')
所以我正在关注这个文档 https://element.eleme.io/#/en-US/component/quickstart 但它给了我这个错误:types.js?a742:39 Uncaught TypeError: Cannot read properties of undefined (reading 'prototype')
我不知道我在这方面做错了什么。
你应该使用与 vue 3 兼容的 element-plus
:
安装:
npm install element-plus --save
用法:
import { createApp } from 'vue'
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
import App from './App.vue'
const app = createApp(App)
app.use(ElementPlus)
app.mount('#app')