Skip to content

Instantly share code, notes, and snippets.

@Serhansolo
Created March 30, 2020 23:14
Show Gist options
  • Save Serhansolo/7cae8a35de7e0ea0837fa58bf415eebc to your computer and use it in GitHub Desktop.
Save Serhansolo/7cae8a35de7e0ea0837fa58bf415eebc to your computer and use it in GitHub Desktop.
<template>
<div id="app">
<navbar />
<section class="section">
<div class="container is-desktop">
<router-view />
</div>
</section>
</div>
</template>
<script>
import Navbar from "./components/Navbar";
export default {
components: { Navbar }
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment