mirror of
https://github.com/VueTubeApp/VueTube
synced 2025-01-06 07:31:12 +00:00
channel header and navigation
This commit is contained in:
parent
20a7641119
commit
d37f9b12ee
3 changed files with 9 additions and 2 deletions
|
@ -1,6 +1,12 @@
|
|||
<template>
|
||||
<v-card style="display: flex" class="rounded-0 pa-3 topNav background">
|
||||
<h3 v-show="!search" class="my-auto ml-4" v-text="page" />
|
||||
<h3
|
||||
v-show="!search"
|
||||
class="my-auto ml-4"
|
||||
v-text="
|
||||
$route.path.includes('channel') ? $store.state.channel.title : page
|
||||
"
|
||||
/>
|
||||
|
||||
<v-btn
|
||||
v-if="search"
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
v-for="tab in channelTabs"
|
||||
:key="tab.name"
|
||||
:to="tab.to"
|
||||
exact
|
||||
:v-ripple="false"
|
||||
>
|
||||
{{ tab.name }}
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
</div>
|
||||
<v-card
|
||||
flat
|
||||
to="/channel/about?text=AboutDescription"
|
||||
to="/channel/about"
|
||||
style="
|
||||
font-size: 0.75rem;
|
||||
height: 2rem;
|
Loading…
Reference in a new issue