Skip to content

Instantly share code, notes, and snippets.

@jaouadballat
Created March 3, 2018 17:26
Show Gist options
  • Save jaouadballat/63870165f38026b1580d794c686defbb to your computer and use it in GitHub Desktop.
Save jaouadballat/63870165f38026b1580d794c686defbb to your computer and use it in GitHub Desktop.
<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