1、简单做下自我介绍2、前端知识靠什么自学并运用到实践中?3、TS 里的 interface 和 type 有什么区别?4、vue3 相较于 vue2 做了哪些系统上的优化呢?5、Vue3 composition API 对比 Vue2 options API 有什么优势?6、项目里有没有提取过自定义 Hook?7、怎么区分 Hook、Utils 工具函数、Library?8、小项目不想用第三方状态库,怎么用 Hook 实现 useStore? import { reactive } from 'vue' function useStore() { const state = reactive...