vue前端开发笔记3 - 安装elementUI

EN
EN
2022-09-04 / 0 评论 / 205 阅读 / 正在检测是否收录...

此次安装基于vue2

安装element-UI

npm i element-ui -S

在mian.js中引入UI

import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
Vue.use(ElementUI);

如图:
l7mw9zhx.png

使用element-ui组件

<template>
  <div class="hello">
    <h1>{{ msg }}</h1>
    <el-row>
      <el-button>默认按钮</el-button>
      <el-button type="primary">主要按钮</el-button>
      <el-button type="success">成功按钮</el-button>
      <el-button type="info">信息按钮</el-button>
      <el-button type="warning">警告按钮</el-button>
      <el-button type="danger">危险按钮</el-button>
    </el-row>
  </div>
</template>

如图:
l7mwb3mj.png

0

评论 (0)

取消