Skip to content
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

Support intelliSence for class style vue and vue-property-decorator #1872

Closed
3 tasks done
John0King opened this issue Apr 25, 2020 · 2 comments
Closed
3 tasks done

Support intelliSence for class style vue and vue-property-decorator #1872

John0King opened this issue Apr 25, 2020 · 2 comments

Comments

@John0King
Copy link

  • I have searched through existing issues
  • I have read through docs
  • I have read FAQ

Info

  • Platform: Win
  • Vetur version: 0.24.0
  • VS Code version: 1.44.2

Problem

doesn't support class style vue with vue-property-decorator for tag/property IntelliSence

Reproducible Case

<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>
@yoyo930021
Copy link
Member

Wait for #1323.

@octref
Copy link
Member

octref commented Jun 8, 2020

Duplicate of #1105.

@octref octref closed this as completed Jun 8, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants