sdras / vue-vscode-snippets

These snippets were built to supercharge my workflow in the most seamless manner possible.
https://marketplace.visualstudio.com/items?itemName=sdras.vue-vscode-snippets
MIT License
1.33k stars 185 forks source link

Create vbase-nuxt: Vue Single File Component with Nuxt Decorator #75

Closed xinbenlv closed 4 years ago

xinbenlv commented 4 years ago
<template>
    <div>

    </div>
</template>

<script lang="ts">
    import { Component, Vue } from 'nuxt-property-decorator'

    @Component({
      components: {
      }
    })
    export default class FooPage extends Vue { 

    }
</script>

<style scoped>

</style>
sdras commented 4 years ago

This is great! Can you please add documentation of it to the readme? Then I can merge and release

sdras commented 4 years ago

This was already taken care of in another PR! Thanks so much for your efforts here.