当前位置:   article > 正文

vue3集成elementUI_vue3结合element-ui

vue3结合element-ui

1. 安装依赖

cnpm i element-ui -S
#vue3上使用elementui需要安装element-plus
cnpm install element-plus --save
  • 1
  • 2
  • 3

2. 导入依赖

重写main.js文件内容

import { createApp } from "vue";
import App from "./App.vue";
import router from "./router/index";
import ElementUI from 'element-plus'
import 'element-plus/dist/index.css'
const app = createApp(App)
app.use(ElementUI)
app.use(router).mount("#app")
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

3. 使用elementUI布局

新建ElementUITest.vue文件

<template>
  <el-row class="mb-4">
    <el-button>Default</el-button>
    <el-button type="primary">Primary</el-button>
    <el-button type="success">Success</el-button>
    <el-button type="info">Info</el-button>
    <el-button type="warning">Warning</el-button>
    <el-button type="danger">Danger</el-button>
    <el-button>中文</el-button>
  </el-row>
</template>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

更多布局查看官网 https://element-plus.org/zh-CN/component/layout.html

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

闽ICP备14008679号