mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-05 01:12:55 +01:00
c04df9341a
GitOrigin-RevId: 35adbf7af45091f555c329d66b5ed1806e55461e
24 lines
341 B
Vue
24 lines
341 B
Vue
<template lang="pug">
|
|
nav.navbar.navbar-light.bg-light
|
|
b-container
|
|
nuxt-link(to="/" title="Go to search!").logo
|
|
| > Nexus Cognitron
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'VHeader',
|
|
data () {
|
|
return {
|
|
search: ''
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
a {
|
|
padding: 5px 0;
|
|
}
|
|
</style>
|