I'm using vue-property-decorator for my .vue files: components/HelloWorld.vue <script lang="ts"> import { Vue, Options } from "vue-property-decorator"; @Options({}) export default class HelloWorld extends Vue { count = 0; } </script> App...
I would still like to either see volar rewrite the .vue imports to .vue.js so typescript can lookup the types automatically for the user or for vite to automatically add this kind of alias, not sure which direction preferred at this point. johnsoncodehk added the pending triage label Jun ...
Versions "typescript": "^4.9.3", "vue-tsc": "^1.0.10" <template> <div class="a" v-bind="{ class: {b: true} }" /> </template> This cause an error that don't actually exist error TS2783: 'class' is specified more than once, so this usage w...
I would still like to either see volar rewrite the .vue imports to .vue.js so typescript can lookup the types automatically for the user or for vite to automatically add this kind of alias, not sure which direction preferred at this point. johnsoncodehk added the pending triage label Jun ...