vue2 项目实例 项目初始化(一)
1、创建 Vue2 项目
cd 项目名称 # 例如:cd my-vue2-project
npm run serve # 启动开发服务器
2、项目目录结构(核心文件)
my-vue2-project/ ├── public/ # 静态资源(不会被 Webpack 处理) ├── src/ │ ├── assets/ # 静态资源(会被 Webpack 处理) │ ├── components/ # 公共组件 │ ├── router/ # 路由配置(若勾选了 Router) │ ├── store/ # 状态管理(若勾选了 Vuex) │ ├── views/ # 页面组件(若勾选了 Router) │ ├── App.vue # 根组件 │ └── main.js # 入口文件 ├── .eslintrc.js # ESLint 配置 ├── babel.config.js # Babel 配置 ├── package.json # 项目依赖和脚本 └── vue.config.js # Vue 项目自定义配置(可手动创建)
3、安装依赖
# 安装UI组件库 npm i element-ui -S # 安装HTTP请求库 npm i axios -S # 安装工具库 npm i lodash -S # 安装开发依赖 npm i compression-webpack-plugin clean-webpack-plugin -D
#Vue2 需搭配vue-router@3.x(4.x 仅支持 Vue3)
npm install vue-router@3.x --save
#Vue2 需搭配 vuex@3.x(4.x 仅支持 Vue3)
npm install vuex@3.x --save
4、vue.config.js配置
const path = require('path') module.exports = { chainWebpack: (config) => { // 配置别名 config.resolve.alias .set('@', path.resolve(__dirname, 'src')) .set('@api', path.resolve(__dirname, 'src/api')) .set('@assets', path.resolve(__dirname, 'src/assets')) .set('@components', path.resolve(__dirname, 'src/components')) .set('@views', path.resolve(__dirname, 'src/views')) } }
5、router 模式需要注意不要 # history模式 ,nginx配置有相关文章
/* * @Author: xxxx * @Date: 2025-09-17 17:20:21 * @LastEditors: xxxx * @LastEditTime: 2025-09-17 17:28:14 * @Description: */ import Vue from 'vue' import Router from 'vue-router' Vue.use(Router) /* Layout */ // import Layout from '@/layout' /** * Note: sub-menu only appear when route children.length >= 1 * Detail see: https://panjiachen.github.io/vue-element-admin-site/guide/essentials/router-and-nav.html * * hidden: true if set true, item will not show in the sidebar(default is false) * alwaysShow: true if set true, will always show the root menu * if not set alwaysShow, when item has more than one children route, * it will becomes nested mode, otherwise not show the root menu * redirect: noRedirect if set noRedirect will no redirect in the breadcrumb * name:'router-name' the name is used by <keep-alive> (must set!!!) * meta : { roles: ['admin','editor'] control the page roles (you can set multiple roles) title: 'title' the name show in sidebar and breadcrumb (recommend set) icon: 'svg-name'/'el-icon-x' the icon show in the sidebar breadcrumb: false if set false, the item will hidden in breadcrumb(default is true) activeMenu: '/example/list' if set path, the sidebar will highlight the path you set } */ /** * constantRoutes * a base page that does not have permission requirements * all roles can be accessed */ export const constantRoutes = [ { path: '/', component: () => import('@/views/home/indexPage'), hidden: true }, { path: '/login', component: () => import('@/views/login/indexPage'), hidden: true }, // { // path: '/404', // component: () => import('@/views/404'), // hidden: true // }, // { // path: '/', // component: Layout, // redirect: '/dashboard', // children: [ // { // path: 'dashboard', // name: 'Dashboard', // component: () => import('@/views/dashboard/index'), // meta: { title: 'Dashboard', icon: 'dashboard' } // } // ] // }, // { // path: '/example', // component: Layout, // redirect: '/example/table', // name: 'Example', // meta: { title: 'Example', icon: 'el-icon-s-help' }, // children: [ // { // path: 'table', // name: 'Table', // component: () => import('@/views/table/index'), // meta: { title: 'Table', icon: 'table' } // }, // { // path: 'tree', // name: 'Tree', // component: () => import('@/views/tree/index'), // meta: { title: 'Tree', icon: 'tree' } // } // ] // }, // { // path: '/form', // component: Layout, // children: [ // { // path: 'index', // name: 'Form', // component: () => import('@/views/form/index'), // meta: { title: 'Form', icon: 'form' } // } // ] // }, // { // path: '/nested', // component: Layout, // redirect: '/nested/menu1', // name: 'Nested', // meta: { // title: 'Nested', // icon: 'nested' // }, // children: [ // { // path: 'menu1', // component: () => import('@/views/nested/menu1/index'), // Parent router-view // name: 'Menu1', // meta: { title: 'Menu1' }, // children: [ // { // path: 'menu1-1', // component: () => import('@/views/nested/menu1/menu1-1'), // name: 'Menu1-1', // meta: { title: 'Menu1-1' } // }, // { // path: 'menu1-2', // component: () => import('@/views/nested/menu1/menu1-2'), // name: 'Menu1-2', // meta: { title: 'Menu1-2' }, // children: [ // { // path: 'menu1-2-1', // component: () => // import('@/views/nested/menu1/menu1-2/menu1-2-1'), // name: 'Menu1-2-1', // meta: { title: 'Menu1-2-1' } // }, // { // path: 'menu1-2-2', // component: () => // import('@/views/nested/menu1/menu1-2/menu1-2-2'), // name: 'Menu1-2-2', // meta: { title: 'Menu1-2-2' } // } // ] // }, // { // path: 'menu1-3', // component: () => import('@/views/nested/menu1/menu1-3'), // name: 'Menu1-3', // meta: { title: 'Menu1-3' } // } // ] // }, // { // path: 'menu2', // component: () => import('@/views/nested/menu2/index'), // name: 'Menu2', // meta: { title: 'menu2' } // } // ] // }, // { // path: 'external-link', // component: Layout, // children: [ // { // path: 'https://panjiachen.github.io/vue-element-admin-site/#/', // meta: { title: 'External Link', icon: 'link' } // } // ] // }, // 404 page must be placed at the end !!! { path: '*', redirect: '/404', hidden: true } ] const createRouter = () => new Router({ // mode: 'history', // require service support scrollBehavior: () => ({ y: 0 }), routes: constantRoutes }) const router = createRouter() // Detail see: https://github.com/vuejs/vue-router/issues/1234#issuecomment-357941465 export function resetRouter() { const newRouter = createRouter() router.matcher = newRouter.matcher // reset router } export default router
6、main.js配置
import Vue from 'vue' import App from './App.vue' import router from './router' Vue.config.productionTip = false new Vue({ router, render: (h) => h(App) }).$mount('#app')
启动

浙公网安备 33010602011771号