Created
February 13, 2018 13:24
-
-
Save danielschmitz/0f75bd91b18eb4c864ca47b768493cc8 to your computer and use it in GitHub Desktop.
Incluindo o componente FormBox no HelloWorld
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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