摘要:
![image](https://img2022.cnblogs.com/blog/1222814/202208/1222814-20220813222934861-1626919913.png) 阅读全文
2022年8月13日 #
摘要:
pinia的模块划分 pinia 的模块划分是通过 js 命名来划分的。 示例: 第一步:拆分 store 文件 store/index.ts 创建一个store对象,并导出 import { createPinia } from "pinia" const store = createPinia( 阅读全文
摘要:
https://blog.csdn.net/donnieliu/article/details/119925802 阅读全文
摘要:
interface 和 type 在 TypeScript 中的区别 1、TypeScript interface 和 type 的介绍 在 TypeScript 中,interface 更偏于一种约束类型,而 type 的作用就是给类型起一个新名字,也就是别名。后来随着 TypeScript 语言 阅读全文
摘要:
ts 的 type 和 interface 两者作用 (简单案例) interface 只能定义对象数据结构类型 对象类型 泛型 // 简单案例1 interface User { name: string; age: number; sex?: string; } let user: User = 阅读全文
摘要:
https://blog.csdn.net/qq_34999583/article/details/121783943?spm=1001.2101.3001.6661.1&utm_medium=distribute.pc_relevant_t0.none-task-blog-2%7Edefault% 阅读全文
摘要:
![image](https://img2022.cnblogs.com/blog/1222814/202208/1222814-20220813093403745-2046742728.png) 阅读全文