Created
August 2, 2018 03:36
-
-
Save slmanju/38c848be043eabcf216a9ce63bae6e8c to your computer and use it in GitHub Desktop.
View with VueJs
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> | |
</div> | |
</template> | |
<script> | |
export default { | |
name: 'HelloWorld', | |
data() { | |
return { | |
msg: 'Hello World' | |
} | |
} | |
} | |
</script> | |
<style scoped> | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment