在上一节中,我们创建并运行了 vra-vue 项目。
vra-vue
来看一下项目的结构:
vra-vue/ .vscode/ // vscode 相关配置 .e2e/ // 端到端(Playwrite)相关配置和测试脚本 node_modules/ public/ // 静态文件目录 src/ assets/ // 图片及 CSS 资源 components/ // 组件及测试代码 router/ // Vue Router 路由配置 store/ // Pinia 状态管理配置 views/ // 页面 App.vue // Vue 根组件 main.js // 应用配置和启动代码 .eslintrc.js // ESLint 配置 .gitignore env.d.ts index.html // 页面入口 package.json playwrite.config.ts // Playwrite 配置文件 pnpm-lock.yaml README.md tsconfig*.json // TypeScript 配置文件 vite.config.ts // Vite 配置文件 vitest.config.ts // Vitest 配置文件
为了符合 代码风格 的要求,进行如下调整:
修改文件名及相关代码
-
views/HomeView.vue
views/home.vue
在根目录创建 .editorconfig 文件
root = true [*.{js,ts,vue,html,css,scss}]charset = utf-8indent_style = spaceindent_size = 2tab_width = 2end_of_line = lftrim_trailing_whitespace = trueinsert_final_newline = truemax_line_length = 80