You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been thinking about how to best organise the docs. Currently there is clear divide between Vue 3 & Vue 2 I think it may be better to split the docs by Vue APIs for the following benefits.
✅ This follows a similar structure to the Vue docs.
✅ API examples are grouped together.
✅ Should make navigating this cheatsheet easier for users (I know it would help me!).
However
😕 We may have to explain some subtle caveats, gotachas during this transition between v2.x -> 3.x.
So I'd like to propose the following structure for this repo to look something like this, with some ideas of sections within each page:
README.md
Table of contents
Intro to cheatsheet
Overarching topics
Links to other resources
composition-api.md
Intro, setting up, why use composition API with TS.
typings for props,ref ,reactive, computed and other hooks.
options-api.md
Intro, setting up, why use options API, caveats of using TS with options API.
typings for data, methods, computed and other properties.
class-components.md
Intro, setting up, why use class component & decorators + TS.
typings for data, methods, computed and other properties.
Later down the line we can also start to have separate pages for Vuex and Vue Router potentially?
The text was updated successfully, but these errors were encountered:
I've been thinking about how to best organise the docs. Currently there is clear divide between Vue 3 & Vue 2 I think it may be better to split the docs by Vue APIs for the following benefits.
However
So I'd like to propose the following structure for this repo to look something like this, with some ideas of sections within each page:
README.md
composition-api.md
props
,ref
,reactive
,computed
and other hooks.options-api.md
data
,methods
,computed
and other properties.class-components.md
data
,methods
,computed
and other properties.Later down the line we can also start to have separate pages for Vuex and Vue Router potentially?
The text was updated successfully, but these errors were encountered: