最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

element

运维笔记admin12浏览0评论

element

element

1.安装  npm i element-ui -S

2.main.js中

import Vue from 'vue'import ElementUI from 'element-ui' // 1import 'element-ui/lib/theme-chalk/index.css' // 2Vue.use(vuex)Vue.config.productionTip = falseVue.use(ElementUI) // 3new Vue({ el: '#app', router, components: { App }, template: '<App/>'})

3.使用

参照官网 组件  

<template> //按钮 <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></template>

element-ui 入门

发布评论

评论列表(0)

  1. 暂无评论