当前位置: 首页 > 工具软件 > cy-ui > 使用案例 >

element-ui后台管理系统学习(1)-vue项目创建与配置

雷骁
2023-12-01

element-ui后台管理系统学习-vue项目创建与配置

笔记

1、项目的创建与配置

npm install -g @vue/cli
vue create my-app
cd my-app
npm run serve

2、配置vue.config.js

module.exports = {
  lintOnSave: false
}

备注:可以使用vue ui进行界面可视化配置。


3、引入element-UI

vue add element

4、引入bootstrap

<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中。


 类似资料: