Add buefy with default navbar
This commit is contained in:
parent
dd8bf55b3c
commit
31151e184c
7 changed files with 70 additions and 149 deletions
13
src/App.vue
13
src/App.vue
|
@ -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;
|
||||
|
|
Reference in a new issue