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,18 +1,12 @@
<template>
<div class="home">
<img alt="Vue logo" src="../assets/logo.png" />
<HelloWorld msg="Welcome to Your Vue.js + TypeScript App" />
</div>
</template>
<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
import HelloWorld from "@/components/HelloWorld.vue"; // @ is an alias to /src
@Component({
components: {
HelloWorld,
},
})
@Component
export default class Home extends Vue {}
</script>