# 后台管理系统 **Repository Path**: ruaily/background-management-system ## Basic Information - **Project Name**: 后台管理系统 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-06-04 - **Last Updated**: 2021-12-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # background_management_system ## Project setup ``` npm install ``` ### Compiles and hot-reloads for development ``` npm run serve ``` ### Compiles and minifies for production ``` npm run build ``` ### Lints and fixes files ``` npm run lint ``` ### Customize configuration See [Configuration Reference](https://cli.vuejs.org/config/). ### 跨域问题解决 vue-cli3 需自己创建vue.config.js文件夹 ``` proxy:{ '/api':{ //访问的ip地址 target: 'http://192.168.1.119:8080', // 允许跨域 changeOrigin:true, // 当请求到这个地址时重写地址 pathRewrite: { '^/api': '' } } } ```