mirror of
https://github.com/tornadocash/tornado-initiation-ui.git
synced 2024-11-22 17:40:04 +01:00
20 lines
346 B
Vue
20 lines
346 B
Vue
<template>
|
|
<b-navbar wrapper-class="container" class="header">
|
|
<template slot="brand">
|
|
<b-navbar-item tag="router-link" to="/" active-class="">
|
|
<Logo />
|
|
</b-navbar-item>
|
|
</template>
|
|
</b-navbar>
|
|
</template>
|
|
|
|
<script>
|
|
import Logo from '@/components/Logo'
|
|
|
|
export default {
|
|
components: {
|
|
Logo,
|
|
},
|
|
}
|
|
</script>
|