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