# rbac-front **Repository Path**: DJYI/rbac-front ## Basic Information - **Project Name**: rbac-front - **Description**: rbac前后端分离的前端项目 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 3 - **Forks**: 0 - **Created**: 2023-08-02 - **Last Updated**: 2023-12-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: vue2 ## README # 项目配置 ## 1.安装nvm [NVM下载 - NVM中文网 (uihtm.com)](https://nvm.uihtm.com/download.html) ## 2.安装node 在cmd命令窗口下执行该命令: ``` nvm install 14.17.1 ``` 安装完成查看版本号 ``` node -v ``` 使用该版本 ``` nvm use 14.17.1 ``` 切换淘宝镜像提升下载速度 ``` npm config set registry https://registry.npm.taobao.org ``` 查看是否切换完成 ``` // 查看下载源 npm config get registry ``` ## 3.安装vue脚手架 安装 ``` npm install -g @vue/cli ``` 查看版本号 ``` vue -V ``` ## 4.在vscode打开该项目 ## 5.在cmd运行此命令下载依赖 ``` npm install ``` ## 6.在cmd运行以下命令即可启动项目 ``` npm run serve ```