Skip to content

Instantly share code, notes, and snippets.

@ayushgupta11
Created September 19, 2018 18:18
Show Gist options
  • Save ayushgupta11/2c9f954776bcbeab5099b843a79685fa to your computer and use it in GitHub Desktop.
Save ayushgupta11/2c9f954776bcbeab5099b843a79685fa to your computer and use it in GitHub Desktop.
<template>
<div class="home">
<img alt="Vue logo" src="../statics/svg_file.svg">
<HelloWorld msg="Welcome to Your Vue.js App"/>
</div>
</template>
<script>
// @ is an alias to /src
import HelloWorld from '@/components/HelloWorld.vue'
export default {
name: 'home',
components: {
HelloWorld
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment