Skip to content

Instantly share code, notes, and snippets.

@djirdehh
Created June 14, 2018 03:28
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 djirdehh/14c7760872bea6bcef866cf8c7908578 to your computer and use it in GitHub Desktop.
Save djirdehh/14c7760872bea6bcef866cf8c7908578 to your computer and use it in GitHub Desktop.
NumberComponent - simple single-file component
<template>
<div>
<h2>The numbers are {{ numbers }}!</h2>
</div>
</template>
<script>
export default {
name: 'NumberComponent',
data () {
return {
numbers: [1, 2, 3]
}
},
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment