-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
a few suggestions from someone using Vue + TypeScript every day for the last six months #4
Comments
Nice tips! Will find a way to incorporate this all in. I'm encountering point number 4 too, know of any good patterns to workaround this? |
awesome tips louisreingold ! |
Awesome advice! If you've got the time for a PR, it's more than welcome! Otherwise we'll get to it soon (: As for point 1, I definitely think it should be noted that Vue 3 is moving away from this set up as shown here and here, and I personally wouldn't encourage anyone to use this approach. Of course these are just my opinions and a section demonstrating this approach could still be included as an option! |
@Roninii Currently we have Vue class components - https://github.com/vuejs/vue-class-component . This is an officially maintained extension of Vue. This is different from the Vue 3 Class API proposal - vuejs/rfcs#17 . Though very similar there are few subtle differences outlined in the RFC. This was in direct competition with the Composition API. As we now know, the Composition API won this battle. As linked above, this is Evan You's reasoning as to why it was dropped - vuejs/rfcs#17 (comment) . However, there are no plans to deprecate the current Vue class component. In fact, there is an open issue to adapt the Vue class component for the upcoming changes for Vue 3 - vuejs/vue-class-component#406 . Sorry I realise this is a bit a brain dump. Please correct me if I'm wrong anywhere. I'm currently in the process of refactoring one of projects to use class components. So happy to start working on this section. I've been holding off because it seems to be a slightly polarising topic in Vue land. But in the context of using it for better Typescript support, I think it makes a lot of sense! |
I 100% agree that this should be supported and added to the cheat sheet. My only concern is that I think the issue thread noting why the proposal was dropped, and what the drawbacks vs. the composition api are. It will certainly always be an option for those that prefer to use it anyways, and I think that should be encouraged in something so expressive as code. I would just like to add a note that |
I am in the process of refactoring an Options Vue 2 app into the class Component style. I was confused about Class Component and Class Api @chiubaca Thanks for clarifying the difference! Personally, I prefer the class component syntax because it's formalized and mostly standard TypeScript. That allows for easier transitions between frameworks like Angular, Vue, React, etc. The only thing I was wondering about is what the equivalent of Awesome writeup @louisreingold! To add to that |
Hello everyone, I have created a vue3 framework with ioc container, named as You can find it here: https://github.com/cabloy/cabloy-front Do you agree with such a concept: Class should not be used in the Therefore, it is completely different from Cabloy-Front has a very important feature: With the support of ioc container, defining reactive states no longer needs Demonstration: no
|
Use class-based components, not Vue's proprietary data shape that gets passed to Vue.extend. (at least for Vue 2)
For Vuex support (types on your action / mutation payloads), use https://github.com/championswimmer/vuex-module-decorators.
Put
"vetur.experimental.templateInterpolationService": true
in your VS Code settings to get TypeScript analysis on your<template>
in .vue files. This only works inside VS Code with Vetur installed -vue-cli-service build
won't show you type errors in your<template>
.Don't forget that
@someEvent='someEventHandler'
isn't type safe. This is the only major area where Vue and TypeScript don't play nice and you end up with a black hole of untyped data coming into your application.Unrelated to Vue - verify the data coming into your app using IO-TS: https://github.com/gcanti/io-ts
For linting, use ESLint + Prettier. Rather than wrestling with the setup, just use the Vue CLI (or run vue ui) and then choose to add TypeScript support to your project when initially creating it and choose ESLint + Prettier.
@ts-ignore
is banned by default. To change that, modify your eslintConfig.rules in yourpackage.json
file. Here's mine:The text was updated successfully, but these errors were encountered: