trusted-setup-server/components/Navbar.vue

28 lines
571 B
Vue
Raw Normal View History

2020-01-29 14:13:06 +01:00
<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">
2020-02-29 16:27:01 +01:00
<b-navbar-item tag="router-link" to="/instructions">
2020-01-29 14:13:06 +01:00
Instructions
</b-navbar-item>
<b-navbar-item href="#">
Download contributions
</b-navbar-item>
2020-01-29 14:13:06 +01:00
</template>
</b-navbar>
</template>
<script>
import Logo from '@/components/Logo'
export default {
components: {
Logo
}
}
</script>