mirror of
https://github.com/tornadocash/trusted-setup-server.git
synced 2024-11-22 01:46:52 +01:00
25 lines
486 B
Vue
25 lines
486 B
Vue
<template>
|
|
<b-navbar wrapper-class="container" class="header">
|
|
<template slot="brand">
|
|
<b-navbar-item :to="{ path: '/' }" tag="router-link">
|
|
<Logo />
|
|
</b-navbar-item>
|
|
</template>
|
|
<template slot="end">
|
|
<b-navbar-item tag="router-link" to="/instructions">
|
|
Instructions
|
|
</b-navbar-item>
|
|
</template>
|
|
</b-navbar>
|
|
</template>
|
|
|
|
<script>
|
|
import Logo from '@/components/Logo'
|
|
|
|
export default {
|
|
components: {
|
|
Logo
|
|
}
|
|
}
|
|
</script>
|