Skip to content

Instantly share code, notes, and snippets.

@lakshyabatman
Last active April 22, 2020 02:37
Show Gist options
  • Save lakshyabatman/02b8044ef49e14e16d3b746a49ff09aa to your computer and use it in GitHub Desktop.
Save lakshyabatman/02b8044ef49e14e16d3b746a49ff09aa to your computer and use it in GitHub Desktop.
Basic test component using Vue and typescript
<template>
<div>
<p>Hi this is test template</p>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import { Component} from 'vue-property-decorator';
@Component({
name:'Test component'
})
export default class TestComponent extends Vue {
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment