We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
doesn't support class style vue with vue-property-decorator for tag/property IntelliSence
vue-property-decorator
<template> <div class="hello"> <h1 @click="onGo()">{{ msg }}</h1> </div> </template> <script lang="ts"> import { Component, Prop, Vue, Emit } from 'vue-property-decorator'; @Component export default class HelloWorld extends Vue { @Prop() msg!: string; @Emit("go") onGo(){ return "go"; } } </script>
The text was updated successfully, but these errors were encountered:
Wait for #1323.
Sorry, something went wrong.
Duplicate of #1105.
No branches or pull requests
Info
Problem
doesn't support class style vue with
vue-property-decorator
for tag/property IntelliSenceReproducible Case
The text was updated successfully, but these errors were encountered: