Skip to content

Instantly share code, notes, and snippets.

@danielschmitz
Created August 31, 2019 12:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielschmitz/7838c81f3f4e7ba6de6952c6f2b0074f to your computer and use it in GitHub Desktop.
Save danielschmitz/7838c81f3f4e7ba6de6952c6f2b0074f to your computer and use it in GitHub Desktop.
A single Vue template file
<template>
<div>Vue component</div>
</template>
<script>
export default {
name: '',
components: {
},
props: {
},
data: () => ({
}),
mounted () {
},
computed: {
},
watch: {
},
methods: {
}
}
</script>
<style lang="stylus" scoped></style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment