- https://github.com/vuejs/rfcs/blob/master/active-rfcs/0009-global-api-change.md
- https://vuejsdevelopers.com/2020/03/16/vue-js-tutorial/
- Notes on dealing with Vue3 on a prod project - https://www.reddit.com/r/vuejs/comments/fs8rpi/new_big_project_v3x_or_v2x/fm0d2ow?utm_source=share&utm_medium=web2x
- https://medium.com/js-dojo/compiling-vue-3-from-scratch-and-trying-the-new-composition-api-6d997f32e5b4
- https://labs.thisdot.co/blog/vue-3-composition-api-do-you-really-need-it
- no ts, vue3 beta - https://github.com/svsem/voronoi-diagram
- no ts, but vue3 beta - https://github.com/blacksonic/todomvc-vue-composition-api
- ts, vue2, but with composition api, fuller example though - https://github.com/kiranbhalerao123/vchat
- ts, simple example, but full - https://github.com/chenxeed/vue3-boilerplate
- ts - https://github.com/tonytomk/vue3-typescript-sample
- about new vue-router - https://github.com/dvdnwoke/vue-router4-tutorial
- ts - https://github.com/zhuowenli/vue-next-demo
- ts - https://github.com/nd2k/vue3-client
- component - https://github.com/bartdominiak/vue-carousel
- https://github.com/ppxb/topfullstuck/tree/master/admin
- https://github.com/cumet04/slack_emoji_viewer
- https://github.com/thinksoul/todolist
- https://github.com/Microsoft/TypeScript-Vue-Starter
- uses typescript decorators - https://github.com/victorgarciaesgi/Vue-Typescript-TodoMvc
- https://github.com/victorgarciaesgi/Moving-Mate
- vue-router test file on the official repo - https://github.com/vuejs/vue-router/blob/dev/types/test/index.ts
- https://www.reddit.com/r/vuejs/comments/crla3m/composition_api_rfc_revised_from_functionbased/
- https://www.danvega.dev/blog/2020/02/12/vue3-ref-vs-reactive/
- Lynus talking about the vue3 changes, a lot of good examples - https://www.reddit.com/r/vuejs/comments/byoe0u/functionbased_component_api_rfc/ and gist of an example transformation https://gist.github.com/LinusBorg/839612d13a702f55d5a78359bb5e696b
- Convo about third party components - vuejs/core#1267
- https://www.reddit.com/r/vuejs/comments/gyc1z8/is_vue_3_stable_enough_to_start_a_project_right/
- https://www.digitalocean.com/community/tutorials/vuejs-using-typescript-with-vue
- Module augmentation for Vue plugins - https://vuejs.org/v2/guide/typescript.html#Augmenting-Types-for-Use-with-Plugins
- Example of module augmentation for vue-progressbar - hilongjw/vue-progressbar#49 (comment)
- Vue TS Return Types - https://vuejs.org/v2/guide/typescript.html#Annotating-Return-Types
- Vue TS Annotating Props - https://vuejs.org/v2/guide/typescript.html#Annotating-Props
- Vuex with TS - https://stackoverflow.com/a/59041769/8014660
- Vuex TS discussion on official repo - vuejs/vuex#564
- Seems to be the best Vuex answer for TS - https://github.com/ktsn/vuex-smart-module - https://www.reddit.com/r/vuejs/comments/fx6kqc/is_vuex_really_usefull_for_a_typescript/fmse9ns?utm_source=share&utm_medium=web2x
- Props using TS - New way - vuejs/vue#6856 (comment) - Old way - https://frontendsociety.com/using-a-typescript-interfaces-and-types-as-a-prop-type-in-vuejs-508ab3f83480
- Computed using TS - https://stackoverflow.com/a/51984573/8014660
- Vue Vuex TS Example - https://github.com/jihonghai/vue-vuex-typescript