Skip to content

Instantly share code, notes, and snippets.

@shailen-naidoo
Created December 13, 2018 09:16
Show Gist options
  • Save shailen-naidoo/92bc56d85070e5d87af48df43e251574 to your computer and use it in GitHub Desktop.
Save shailen-naidoo/92bc56d85070e5d87af48df43e251574 to your computer and use it in GitHub Desktop.
Single-instance app
<template>
<div>
<the-navigation-bar></the-navigation-bar>
<router-view>
// Your views are rendered here :)
</router-view>
</div>
</template>
<script>
import TheNavigationBar from "./TheNavigationBar.vue"
export default {
components: {
TheNavigationBar
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment