Skip to content

Instantly share code, notes, and snippets.

@ChadRoberts21
Created April 10, 2018 15:08
Show Gist options
  • Save ChadRoberts21/85665604b995cf9ec85727c23b4f8389 to your computer and use it in GitHub Desktop.
Save ChadRoberts21/85665604b995cf9ec85727c23b4f8389 to your computer and use it in GitHub Desktop.
Vue file boilerplate
<template>
<div >
<!-- content -->
</div>
</template>
<script>
export default {
name: 'NAME_OF_COMOPONENT',
data () {
return {
msg: 'Welcome to Your Vue.js App'
}
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment