vue3 typescript
Vue Mastery 现时免费相关课程 Vue 3 + TypeScript course 到20213月9号,然后自己看了一遍,总结了一下发出来.
init with vuecli
用工具初始化,会有提示是否用ts.
create components with ts
对应代码看 Real World Vue 3 TypeScript GitHub Repo
1 | <script lant="ts"> |
VueDX
ide 支持是用的[VueDX][ref3]这个工具
1 | interface TodoItem{ |
Props with Types
1 | import {defineComponent ,PropType } from 'vue' |
Computed & Methods with Custom Types
重点在想返回什么
1 | ..... |
others 扩充资料
- The official Vue docs that now has a dedicated TypeScript section that will continue to grow as the ecosystem matures.
- And of course, the official TypeScript docs site for an in-depth look at TypeScript