mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-14 12:13:52 +00:00
18 lines
293 B
Vue
18 lines
293 B
Vue
<template>
|
|
<header>
|
|
<NavBar />
|
|
</header>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Component, Vue } from 'vue-property-decorator';
|
|
import NavBar from './NavBar.vue';
|
|
|
|
@Component({
|
|
components: { NavBar },
|
|
})
|
|
export default class Header extends Vue {}
|
|
</script>
|
|
|
|
<style scoped></style>
|