Skip to content

Instantly share code, notes, and snippets.

@slmanju
Created August 2, 2018 03:36
Show Gist options
  • Save slmanju/38c848be043eabcf216a9ce63bae6e8c to your computer and use it in GitHub Desktop.
Save slmanju/38c848be043eabcf216a9ce63bae6e8c to your computer and use it in GitHub Desktop.
View with VueJs
<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