当前位置:   article > 正文

VUE3+ElementPlus

vue3+elementplus

备注:VUE3项目不能使用element-ui,引入后会报错,只能使用element-plus框架

一、进入项目目录,安装ElementPlus

npm i element-plus

二、安装成功以后,修改src/main.js

  1. import { createApp } from 'vue'
  2. import App from './App.vue'
  3. import ElementPlus from 'element-plus'
  4. import 'element-plus/dist/index.css'
  5. import router from './router/index.js'
  6. router.beforeEach((to,from,next)=>{
  7. if(to.meta.title)
  8. {
  9. document.title = to.meta.title
  10. }
  11. next()
  12. })
  13. createApp(App).use(ElementPlus).use(router).mount('#app')

三、测试

在src/componets/HelloWord.vue新增element-ui的按钮 

<el-button type="primary">主要按钮</el-button>

 此时vue3+element-plus项目已经创建完成,可以在项目中使用elementui的布局和样式了

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/644764
推荐阅读
相关标签
  

闽ICP备14008679号