Matthew

Results 9 comments of Matthew

Thinking about it, even if the representation is a little inaccurate, I think it would still be helpful to have a React-dev-tools like tree of components (as opposed to literal...

is something like this useful? https://github.com/whyboris/TypeScript-Call-Graph

https://caniuse.com/css-snappoints See the notes section for IE11's restrictions

sure, I was thinking for all helpers.

@davidmeirlevy ok so I have a working prototype. Using useState as an example ```javascript export function useState(storeOrMap, map) { let store = storeOrMap; if (isArray(store)) { map = store; store...

@davidmeirlevy vue composition api is out of beta versions: https://github.com/vuejs/composition-api/releases and will follow vue 3's refinements for the forseeable future from what I know. if you intend for this library...

ok so then these effects would be isolated from the `next` branch, which we could make a similar change for but with the relevant versions of vuex and @vue packages....

> Does the abandonment of the [Class API proposal](https://github.com/vuejs/rfcs/pull/17) have any affect on this package and whether it would be maintained at the same level in the future? Cheers. nope,...

Typescript types allow a user to have autocomplete/intellisense https://basarat.gitbooks.io/typescript/docs/types/@types.html that's a good explanation of what these would achieve, you can get autocomplete for any javascript project, not just typescript projects...