一、创建项目
npm create vite@latest my-vue-app --template vue-ts
npm create vite@latest my-vue-app – --template vue-ts
yarn create vite my-vue-app --template vue-ts
pnpm create vite my-vue-app --template vue-ts
复制代码
解决方法: 更新node版本
nodejs.org/zh-cn/
二、项目基本配置
在 public目录 下,添加一个 favicon.icon 图片
在 index.html 文件的 title标签 中配置
能让 代码提示 变得更加友好
{
“compilerOptions”: {
// 允许从没有设置默认导出的模块中默认导入。这并不影响代码的输出,仅为了类型检查。
“allowSyntheticDefaultImports”: true,
// 解析非相对模块名的基准目录
“baseUrl”: “.”,
// 模块加载兼容模式,可以是呀import from语法导入commonJS模块
“esModuleInterop”: true,
// 从 tslib 导入辅助工具函数(比如 __extends, __rest等)
“importHelpers”: true,
// 指定生成哪个模块系统代码
“module”: “esnext”,
// 决定如何处理模块。
“moduleResolution”: “node”,
// 启用所有严格类型检查选项。
// 启用 --strict相当于启用 --noImplicitAny, --noImplicitThis, --alwaysStrict,
// --strictNullChecks和 --strictFunctionTypes和–strictPropertyInitialization。
“strict”: true,
“noImplicitAny”: false, //关闭implicitly has an ‘any’ type
// 支持jsx语法
“jsx”: “preserve”,
// 生成相应的 .map文件。
“sourceMap”: true,
// 忽略所有的声明文件( .d.ts)的类型检查。
“skipLibCheck”: true,
// 指定ECMAScript目标版本
“target”: “esnext”,
// 要包含的类型声明文件名列表
“types”: [
“node”
],
“typeRoots”: [
“…/node_modules/@types”
],
// isolatedModules 设置为 true 时,如果某个 ts 文件中没有一个import or export 时,ts 则认为这个模块不是一个 ES Module 模块,它被认为是一个全局的脚本,
“isolatedModules”: true,
// 模块名到基于 baseUrl的路径映射的列表。
“paths”: {
"@/": [
“src/"
]
},
“vueCompilerOptions”: {
“experimentalDisableTemplateSupport”: true //去掉volar下el标签红色波浪线问题
},
// 编译过程中需要引入的库文件的列表。
“lib”: [
“ESNext”,
“DOM”,
“DOM.Iterable”,
“ScriptHost”
]
},
// 解析的文件
“include”: [
“env.d.ts”,
"src/**/”,
“src//*.ts",
"src//.d.ts",
"src/**/.tsx”,
“src//.vue",
"src/.js",
"src//*.jsx”
],
“exclude”: [
“node_modules”
],
“references”: [
{
“path”: “./tsconfig.node.json”
}
]
}
复制代码
4. 设置 .prettierrc.json 文件
eslint 配置格式化选项说明
// 1.一行代码的最大字符数,默认是80(printWidth: )
printWidth: 80,
// 2.tab宽度为2空格(tabWidth: )
tabWidth: 2,
// 3.是否使用tab来缩进,我们使用空格(useTabs: )
useTabs: false,
// 4.结尾是否添加分号,false的情况下只会在一些导致ASI错误的其工况下在开头加分号,我选择无分号结尾的风格(semi: )
semi: false,
// 5.使用单引号(singleQuote: )
singleQuote: true,
// 6.object对象中key值是否加引号(quoteProps: “
quoteProps: ‘as-needed’,
// 7.在jsx文件中的引号需要单独设置(jsxSingleQuote: )
jsxSingleQuote: false,
// 8.尾部逗号设置,es5是尾部逗号兼容es5,none就是没有尾部逗号,all是指所有可能的情况,需要node8和es2017以上的环境。(trailingComma: “
trailingComma: ‘es5’,
// 9.object对象里面的key和value值和括号间的空格(bracketSpacing: )
bracketSpacing: true,
// 10.jsx标签多行属性写法时,尖括号是否另起一行(jsxBracketSameLine: )
jsxBracketSameLine: false,
// 11.箭头函数单个参数的情况是否省略括号,默认always是总是带括号(arrowParens: “
arrowParens: ‘always’,
// 12.range是format执行的范围,可以选执行一个文件的一部分,默认的设置是整个文件(rangeStart: rangeEnd: )
rangeStart: 0,
rangeEnd: Infinity,
// 18. vue script和style标签中是否缩进,开启可能会破坏编辑器的代码折叠
vueIndentScriptAndStyle: false,
// 19. endOfLine: “
endOfLine: ‘lf’,
// 20.embeddedLanguageFormatting: “off”,默认是auto,控制被引号包裹的代码是否进行格式化
embeddedLanguageFormatting: ‘off’,
复制代码
{
“singleQuote”: true,
“tabWidth”: 4,
“semi”: false,
}
复制代码
5. 设置 vite.config.ts 文件
安装 gzip 和 mock 依赖
npm i vite-plugin-compression vite-plugin-mock -D
复制代码
import { defineConfig } from ‘vite’
import vue from ‘@vitejs/plugin-vue’
import vueJsx from ‘@vitejs/plugin-vue-jsx’
import path from ‘path’
// gzip插件
import viteCompression from ‘vite-plugin-compression’
// mock插件
import { viteMockServe } from ‘vite-plugin-mock’
const resolve = (dir) => path.resolve(__dirname, dir)
export default defineConfig({
base: ‘./’, //打包路径
publicDir: resolve(‘public’), //静态资源服务的文件夹
plugins: [
vue(),
vueJsx(),
// gzip压缩 生产环境生成 .gz 文件
viteCompression({
verbose: true,
disable: false,
threshold: 10240,
algorithm: ‘gzip’,
ext: ‘.gz’,
}),
//mock
viteMockServe({
mockPath: ‘./mocks’, // 解析,路径可根据实际变动
localEnabled: true, // 此处可以手动设置为true,也可以根据官方文档格式
}),
],
// 配置别名
resolve: {
alias: {
‘@’: resolve(‘src’),
},
// 导入时想要省略的扩展名列表
extensions: [‘.mjs’, ‘.js’, ‘.ts’, ‘.jsx’, ‘.tsx’, ‘.json’, ‘.vue’],
},
css: {
// css预处理器
preprocessorOptions: {
scss: {
additionalData:
‘@import “@/assets/styles/common.scss”;@import “@/assets/styles/reset.scss”;’,
},
},
},
//启动服务配置
server: {
host: ‘0.0.0.0’,
port: 8000,
open: true, // 自动在浏览器打开
proxy: {},
},
// 打包配置
build: {
//浏览器兼容性 “esnext”|“modules”
target: ‘modules’,
//指定输出路径
outDir: ‘build’,
//生成静态资源的存放路径
assetsDir: ‘assets’,
//启用/禁用 CSS 代码拆分
cssCodeSplit: true,
sourcemap: false,
assetsInlineLimit: 10240,
// 打包环境移除console.log, debugger
minify: ‘terser’,
terserOptions: {
compress: {
drop_console: true,
drop_debugger: true,
},
},
rollupOptions: {
input: {
main: resolve(‘index.html’),
},
output: {
entryFileNames: js/[name]-[hash].js
,
chunkFileNames: js/[name]-[hash].js
,
assetFileNames: [ext]/[name]-[hash].[ext]
,
},
},
},
})
复制代码
三、项目目录结构划分
assets 存放 => 静态资源
css => 样式重置
img => 图片文件
font => 字体文件
components 存放 => 公共组件
hooks 存放 => 公共常用的hook
mock 存放 => 模拟接口数据
router 存放 => 路由管理
service 存放 => 接口请求
stores 存放 => 状态管理
utils 存放 => 插件、第三方插件
views 存放 => 视图、页面
四、css 样式重置
自定义的css公共文件放置在assets中的css文件中即可
…
复制代码
02 - 引入
// 在 main.js 中引入
import ‘./assets/css/common.css’;
复制代码
五、vue-router 路由配置
一步创建需要安装依赖、配置路由, 引入mian.ts, 配置创建则已自动生成
import { createApp } from ‘vue’;
import App from ‘./App.vue’;
// 1. 导入
import router from ‘./router’;
import ‘normalize.css’;
import ‘./assets/css/reset.css’;
import ‘./assets/css/common.css’;
// 2. 使用
createApp(App).use(router).mount(‘#app’);
复制代码
4. 使用
在该用的地方加上
六、pinia 状态管理
一步创建需要安装依赖、配置路由, 引入mian.ts, 配置创建则已自动生成
// 创建请求实例
const instance = axios.create({
baseURL: ‘/api’,
// 指定请求超时的毫秒数
timeout: 10000,
// 表示跨域请求时是否需要使用凭证
withCredentials: false,
});
// 设置请求头
instance.defaults.headers.post[‘Content-Type’] = ‘application/json;charset=UTF-8’;
instance.defaults.headers.put[‘Content-Type’] = ‘application/x-www-form-urlencoded’;
// instance.defaults.headers.put[‘Content-Type’] = ‘application/json’;
// 取消重复请求
const pending = [];
// 定义接口
interface PendingType {
url?: string;
method?: Method;
params: any;
data: any;
cancel: any;
}
// 移除重复请求
const removePending = (config: AxiosRequestConfig) => {
for (const key in pending) {
const item: number = +key;
const list: PendingType = pending[key];
// 当前请求在数组中存在时执行函数体
if (list.url === config.url && list.method === config.method && JSON.stringify(list.params) === JSON.stringify(config.params) && JSON.stringify(list.data) === JSON.stringify(config.data)) {
// 执行取消操作
list.cancel(‘操作太频繁,请稍后再试’);
// 从数组中移除记录
pending.splice(item, 1);
}
}
};
// 请求拦截器(发起请求之前的拦截)
instance.interceptors.request.use(
(config): AxiosRequestConfig => {
removePending(config);
config.cancelToken = new axios.CancelToken(c => {
pending.push({ url: config.url, method: config.method, params: config.params, data: config.data, cancel: c });
});
/**
* 在这里一般会携带前台的参数发送给后台,比如下面这段代码:
* const token = getToken()
* if (token) {
* config.headers.token = token
* }
*/
return config;
},
(error) => {
return Promise.reject(error);
},
);
// 响应拦截器(获取到响应时的拦截)
instance.interceptors.response.use(
(response) => {
removePending(response.config);
/**
* 根据你的项目实际情况来对 response 和 error 做处理
* 这里对 response 和 error 不做任何处理,直接返回
*/
return response;
},
(error) => {
return Promise.reject(error);
},
);
interface ResType {
code: number;
data?: T;
msg?: string;
message?: string;
err?: string;
}
interface Http {
post(url: string, data?: unknown, params?: unknown,): Promise
get(url: string, params?: unknown): Promise
put(url: string, data?: unknown, params?: any): Promise
_delete(url: string, params?: unknown): Promise
}
// 导出常用函数
const http: Http = {
post(url, data, params) {
return new Promise((resolve, reject) => {
instance
.post(url, JSON.stringify(data), params)
.then((res) => {
resolve(res.data);
})
.catch((err) => {
reject(err.data);
});
});
},
get(url, params) {
return new Promise((resolve, reject) => {
axios
.get(url, { params })
.then((res) => {
resolve(res.data);
})
.catch((err) => {
reject(err.data);
});
});
},
put(url, data, params) {
return new Promise((resolve, reject) => {
instance
.put(url, data, params)
.then((res) => {
resolve(res.data);
})
.catch((err) => {
reject(err.data);
});
});
},
_delete(url, params) {
return new Promise((resolve, reject) => {
instance
.delete(url, params)
.then((res) => {
resolve(res.data);
})
.catch((err) => {
reject(err.data);
});
});
}
}
export default http;
复制代码
之后在 api 文件夹中以业务模型对接口进行拆分,举个例子,将所有跟用户相关接口封装在 User 类中,此类称作用户模型。
在 User 类中比如有登录、注册、获取用户信息等方法,如果有业务逻辑变动,只需要修改相关方法即可。
import { post } from ‘@/utils/request’;
export default class User {
/**
复制代码
八、使用scss, 并定义全局scss变量
首先我们先安装sass和sass-loader:
npm i sass sass-loader -D
复制代码
然后我们需要在vite.config.ts中配置css预处理器
export default defineConfig({
css: {
preprocessorOptions: {
scss: {
additionalData: ‘@import “@/assets/styles/global.scss”;@import “@/assets/styles/reset.scss”;’,
},
}
}
})
复制代码
我们这里默认加载global.scss中的样式,那么我们就需要创建一个这样的文件:
// src/assets/style/global.scss
$primary-color: #5878e2; // 主题色
复制代码
最后在main.ts中引入即可:
import “./assets/style/global.scss”;
复制代码
然后在组件中使用时,就可以直接使用:
/* 插槽选择器 /
:slotted(selector) {
/ … */
}
/* 全局选择器 /
:global(selector) {
/ … */
}