Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@praneetloke
Last active June 9, 2018 16:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save praneetloke/61759a565ee916b9c002ef06d9c3a698 to your computer and use it in GitHub Desktop.
Save praneetloke/61759a565ee916b9c002ef06d9c3a698 to your computer and use it in GitHub Desktop.
<template>
<div class="hello">
<h1>{{ msg }}</h1>
<h2>Essential Links</h2>
<ul>
<li>
<a
href="https://vuejs.org"
target="_blank"
>
Core Docs
</a>
</li>
...
omitted for brevity
...
</ul>
</div>
</template>
<script>
export default {
name: 'HelloWorld',
data() {
return {
msg: 'Welcome to Your Vue.js App',
};
},
};
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
...
omitted for brevity
...
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment