当前位置:   article > 正文

VUE3 引入 Element-UI_vue3 引入element

vue3 引入element

1.下载Elment-PLUS UI

注意(vue3只可以用Elment-PLUS不能直接用elment-ui)

hhh

2.main.js写入以下代码

import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'

import ElementPlus from 'element-plus';
import 'element-plus/dist/index.css'

createApp(App).use(store).use(router).use(ElementPlus).mount('#app')
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/118052
推荐阅读
相关标签
  

闽ICP备14008679号