Created
June 6, 2018 02:13
-
-
Save reginaldojunior/3fe538c95590f05fe83390d522273f6d to your computer and use it in GitHub Desktop.
HelloWorld.vue
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 class="hello"> | |
<h1>{{ msg }}</h1> | |
<h2>{{ name }}</h2> | |
</div> | |
</template> | |
<script> | |
export default { | |
name: 'HelloWorld', | |
data () { | |
return { | |
msg: 'Welcome to World of Vue.js', | |
name: 'Digite seu Nome' | |
} | |
} | |
} | |
</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