# v3-admin-new2 **Repository Path**: wby6225104/v3-admin-new2 ## Basic Information - **Project Name**: v3-admin-new2 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-09-11 - **Last Updated**: 2024-12-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: vue前端 ## README # 初始化项目 ``` npm create vue@latest ``` ## 项目自动打开 ``` package.json "dev": "vite --open", ``` ## eslint 配置 ``` npm i eslint -D npx eslint --init ``` ## elemnt-plus ``` npm install element-plus --save npm install -D unplugin-vue-components unplugin-auto-import ``` ## svg插件 ··· npm i vite-plugin-svg-icons -D ··· ## 自动导入插件 ··· npm install -D unplugin-vue-components unplugin-auto-import ··· ## 清除默认样式 ··· reset.scss [text](src/styles/reset.scss) ··· # 登录功能 ## 安装axios ··· npm i axios ··· # 主页 ## 安装 element 图标库 ··· npm install @element-plus/icons-vue ··· ## 清楚默认样式 ··· [text](src/styles/reset.scss) ··· ## 设置全局样式 ··· resolve: {。。。}, css: { preprocessorOptions: { scss: { additionalData: `@import "./src/styles/global_variable.scss";` } } } ···