Skip to content

Instantly share code, notes, and snippets.

@danielschmitz
Created February 13, 2018 13:24
Show Gist options
  • Save danielschmitz/0f75bd91b18eb4c864ca47b768493cc8 to your computer and use it in GitHub Desktop.
Save danielschmitz/0f75bd91b18eb4c864ca47b768493cc8 to your computer and use it in GitHub Desktop.
Incluindo o componente FormBox no HelloWorld
<template>
<div>
Hello World
<form-box></form-box>
</div>
</template>
<script>
import FormBox from './FormBox.vue'
export default {
name: 'HelloWorld',
components: {
FormBox
},
data () {
return {
msg: 'Welcome to Your Vue.js App'
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment