mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-12 04:37:50 +01:00
fff80cd4e7
- fix(nexus): Preparing configs to be published - feat(nexus): Various fixes for opening left sources - fix(nexus): Fine-tune versions 1 internal commit(s) GitOrigin-RevId: 6c834cd3f4f5f18109a159a73503700dac63b0bb
24 lines
340 B
Vue
24 lines
340 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 {
|
|
query: ''
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
a {
|
|
padding: 5px 0;
|
|
}
|
|
</style>
|