标签:完成 dev main public 浏览器 定义 htm 目录 element
npm 安装太慢,可以切换成淘宝npm镜像cnpm,安装命令
npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm -v 验证是否安装成功
npm instsall -g vue-cli
# demo是项目名
vue init webpack demo
Vue.config.productionTip = false
/* eslint-disable no-new */
Vue.use(ElementUI)
new Vue({
el: ‘#app‘,
router,
components: { App },
template: ‘
})
```
<div class="block">
<span class="demonstration">默认显示颜色</span>
<span class="wrapper">
<el-button type="success">成功按钮</el-button>
<el-button type="warning">警告按钮</el-button>
<el-button type="danger">危险按钮</el-button>
<el-button type="info">信息按钮</el-button>
</span>
</div>
</div>
-- 执行命令 npm run dev,就可以看到elementUi是否成功
标签:完成 dev main public 浏览器 定义 htm 目录 element
原文地址:https://www.cnblogs.com/Bonker/p/8961684.html