项目基本搭建
1. 项目创建完成√
2. 项目配置:
配置项目的icon
配置项目的标题
配置 jsconfig.json
{ "compilerOptions": { "target": "es5", "module": "esnext", "baseUrl": "./", "moduleResolution": "node", "paths": { "@/*": [ "src/*" ] }, "jsx": "preserve", "lib": [ "esnext", "dom", "dom.iterable", "scripthost" ] } }
3. 划分目录结构
4. CSS样式重置
npm install normalize.css
在 main.js中引入
全家桶配置
1. Vue-Router 配置
import { createRouter, createWebHistory } from "vue-router" const router = createRouter({ history: createWebHistory(import.meta.env.BASE_URL), routes: [ { path: "/", redirect: "/home" }, { path: "/home", component: () => import("../views/home/home.vue") }, { path: "/favor", component: () => import("../views/favor/favor.vue") }, { path: "/order", component: () => import("../views/order/order.vue") }, { path: "/message", component: () => import("../views/message/message.vue") } ] }) export default router
2. Pinia 配置
之前写过两篇文章,分别是关于 Pinia 和 Vuex 的相关知识。最后这个项目还是选择最新的 Pinia
Vant 的使用
1. 引入 Vant
npm i vant
因为我们项目是基于 Vite 搭建的,所以采用官方推荐的做法。
2. 使用 Vant
完成底部 tabbar 效果:
直接引入使用即可
Git 管理和代码托管(github)
项目初始化完成后提交git仓库管理,方便以后操作项目。
Vite 默认没有集成 git,所以需要我们自己初始化
1.初始化仓库
git init
2.提交代码到暂存区
git add .
3.
git commit -m "项目初始化"
4.查看状态
git status
5.提交github
git remote add origin https://github.com/fdfd-0313/cz-trip.git git push -u origin main
6.刷新查看–>成功