赞
踩
cnpm i element-ui -S
#vue3上使用elementui需要安装element-plus
cnpm install element-plus --save
重写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")
新建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>
更多布局查看官网 https://element-plus.org/zh-CN/component/layout.html
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。