Add buefy with default navbar

This commit is contained in:
aldrin 2021-04-13 10:00:47 +02:00
parent dd8bf55b3c
commit 31151e184c
7 changed files with 70 additions and 149 deletions

View file

@ -1,13 +1,18 @@
<template>
<div id="app">
<div id="nav">
<router-link to="/">Home</router-link> |
<router-link to="/about">About</router-link>
</div>
<Navbar />
<router-view />
</div>
</template>
<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
import Navbar from "@/components/Navbar.vue";
@Component({ components: { Navbar } })
export default class App extends Vue {}
</script>
<style lang="scss">
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;