赞
踩
在百度找了一圈,结果发现都是标题党,都是拿vue-cli3.x当做vue3。感觉好像只能用ant-design-vue,后来通过自己去github上了解,发现由于vue3.0在插件install函数的入参从Vue原型(类)改成了app(vue实例e)。导致element-ui中Vue.prototype.* 这样的代码已经全都失效了。所以element-ui铁定是不兼容了。Vue3.0虽然兼容option api。但实际已经开始完全拥抱Composition API了。然后又发现elementui有个新版本,即Element Plus,是为vue3项目特别更新的版本。
npm 安装
推荐使用 npm 的方式安装,它能更好地和 webpack 打包工具配合使用。
npm install element-plus --save
在 main.js 中写入以下内容:
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')
或
import { createApp } from 'vue'
import ElementPlus from 'element-plus';
import 'element-plus/lib/theme-chalk/index.css';
import App from './App.vue';
createApp(App).use(ElementPlus, { size: 'small', zIndex: 3000 }).mount('#app')
然后就可以安装vue2.x的方式来使用elementui了!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。