This repository has been archived on 2022-05-05. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
userausfall/src/App.vue
2021-04-13 11:01:50 +02:00

16 lines
326 B
Vue

<template>
<div id="app">
<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"></style>