A minimal vue admin template with Element UI & axios & iconfont & permission control & lint
# clone the project
git clone https://github.com/ideacome-frontend/vue-admin-template.git
# or use ideacome cli create project
npm install -g ideacome-cli
ideacome create project-name
# enter the project directory
cd vue-admin-template
# install dependency
npm install
# develop
npm run dev
This will automatically open http://localhost:2333
# build for test environment
npm run build:stage
# build for production environment
npm run build:prod
# preview the release environment effect
npm run preview
# preview the release environment effect + static resource analysis
npm run preview -- --report
# code format check
npm run lint
# code format check and auto fix
npm run lint -- --fix
如果后端接口支持跨域: 可以直接在 .env.development 中配置后端接口地址
如果后端接口不支持跨域 本地开发可在 vue.config.js 的 devServer => proxy中配置后端接口地址 本地请求的时候会把http://127.0.0.1/dev-api/xxx 转发到对应的接口地址
如果前端域名和接口域名相同,则可以使用cookie传递token,这也是默认的传递方式 如果域名不同,可以在 request.js 中的请求头中主动设置token参数
Modern browsers and Internet Explorer 10+.
IE / Edge |
Firefox |
Chrome |
Safari |
---|---|---|---|
IE10, IE11, Edge | last 2 versions | last 2 versions | last 2 versions |
MIT license.