Created
March 3, 2018 17:26
-
-
Save jaouadballat/63870165f38026b1580d794c686defbb to your computer and use it in GitHub Desktop.
This file contains 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 id="app"> | |
<Navbar /> | |
<router-view /> | |
</div> | |
</template> | |
<script> | |
import Navbar from './components/Navbar.vue' | |
export default { | |
name: 'app', | |
components: { | |
Navbar | |
} | |
} | |
</script> | |
<style> | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment