This repository has been archived on 2022-05-05. You can view files and clone it, but cannot push or open issues or pull requests.
userausfall/src/components/Navbar.vue

22 lines
475 B
Vue
Raw Normal View History

2021-04-13 10:00:47 +02:00
<template>
<b-navbar>
<template #brand>
<b-navbar-item tag="router-link" :to="{ path: '/' }">
2021-08-02 10:14:38 +02:00
<img src="/img/logo_text.png" alt="userausfall" />
2021-04-13 10:00:47 +02:00
</b-navbar-item>
</template>
2021-08-02 10:14:38 +02:00
<template #start> </template>
2021-04-13 10:00:47 +02:00
2021-08-02 10:14:38 +02:00
<template #end> </template>
2021-04-13 10:00:47 +02:00
</b-navbar>
</template>
<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
@Component
export default class Navbar extends Vue {}
</script>
<style scoped lang="scss"></style>