Skip to content

Instantly share code, notes, and snippets.

@leecrosdale
Created July 9, 2019 10:32
Show Gist options
  • Save leecrosdale/6e1e9562cac50586046547dcf456d557 to your computer and use it in GitHub Desktop.
Save leecrosdale/6e1e9562cac50586046547dcf456d557 to your computer and use it in GitHub Desktop.
Empty / Template VueJS Component
<template>
</template>
<script>
export default {
name: 'Example',
components: {},
props: {},
data() {
return {}
},
mounted() {
},
computed: {},
methods: {}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment