zignd / HTML-CSS-Class-Completion

:chocolate_bar: Visual Studio Code extension that provides CSS class name completion for the HTML class attribute based on the CSS files in your workspace
https://marketplace.visualstudio.com/items?itemName=Zignd.html-css-class-completion
MIT License
252 stars 83 forks source link

Support for Vue+TypeScript #146

Open czd890 opened 5 years ago

czd890 commented 5 years ago

demo.vue

<template>
    <div id="app" class="title"></div>
</template>
<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
export default class mypage extends Vue{
}
</script>
<style lang="scss" scoped>
.title {
    font-size: 18px;
}
</style>

image

I have Vetur installed, yet it still doesn't seem to work.

QLemon-J commented 5 years ago

same issue

msacchetti commented 5 years ago

Seconded!