element-ui后台管理系统学习-vue项目创建与配置
npm install -g @vue/cli
vue create my-app
cd my-app
npm run serve
module.exports = {
lintOnSave: false
}
备注:可以使用vue ui进行界面可视化配置。
vue add element
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
上面代码添加到public/index.html中。