# framework-pro-vue **Repository Path**: nzwm/framework-pro-vue ## Basic Information - **Project Name**: framework-pro-vue - **Description**: scada项目,平台前端代码 - **Primary Language**: HTML - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2025-09-17 - **Last Updated**: 2025-09-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README vue前端工程,使用elementUI #如何新建页面 * 在wms文件夹内新建vue component,idea默认会生成基础代码如下 ```vue ``` * 在/router/index.js文件中添加路由 ```vue // wms页面组件定义 import wmsWarehouseManagement from '../components/wms/basicManagement/wmsWarehouseManagement' // wms页面------------------ { // 仓库管理 path: '/wmsWarehouseManagement', name: 'wmsWarehouseManagement', component: wmsWarehouseManagement } ```