|
@@ -25,7 +25,7 @@
|
|
|
<v-app-bar
|
|
<v-app-bar
|
|
|
:clipped-left="$vuetify.breakpoint.lgAndUp"
|
|
:clipped-left="$vuetify.breakpoint.lgAndUp"
|
|
|
app
|
|
app
|
|
|
- color="red"
|
|
|
|
|
|
|
+ color="blue"
|
|
|
dark
|
|
dark
|
|
|
>
|
|
>
|
|
|
<v-app-bar-nav-icon @click.stop="drawer = !drawer" />
|
|
<v-app-bar-nav-icon @click.stop="drawer = !drawer" />
|
|
@@ -35,6 +35,7 @@
|
|
|
>
|
|
>
|
|
|
<span style="cursor:pointer" @click="goToHome()">{{ this.$store.state.webInfo.name }}</span>
|
|
<span style="cursor:pointer" @click="goToHome()">{{ this.$store.state.webInfo.name }}</span>
|
|
|
</v-toolbar-title>
|
|
</v-toolbar-title>
|
|
|
|
|
+
|
|
|
<v-text-field
|
|
<v-text-field
|
|
|
v-model="keyword"
|
|
v-model="keyword"
|
|
|
flat
|
|
flat
|
|
@@ -83,11 +84,21 @@
|
|
|
<v-main>
|
|
<v-main>
|
|
|
<router-view />
|
|
<router-view />
|
|
|
</v-main>
|
|
</v-main>
|
|
|
|
|
+ <!--
|
|
|
|
|
+ <v-footer app>
|
|
|
|
|
+ <v-col
|
|
|
|
|
+ class="text-center"
|
|
|
|
|
+ cols="12"
|
|
|
|
|
+ >
|
|
|
|
|
+ {{ new Date().getFullYear() }} — <strong>Vuetify</strong>
|
|
|
|
|
+ </v-col>
|
|
|
|
|
+ </v-footer>-->
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
import Head from '@/layout/components/head.vue'
|
|
import Head from '@/layout/components/head.vue'
|
|
|
|
|
+
|
|
|
export default {
|
|
export default {
|
|
|
// TODO 增加分类页
|
|
// TODO 增加分类页
|
|
|
components: {
|
|
components: {
|
|
@@ -100,7 +111,7 @@ export default {
|
|
|
items: [
|
|
items: [
|
|
|
{ icon: 'mdi-home', text: '首页', link: '/' },
|
|
{ icon: 'mdi-home', text: '首页', link: '/' },
|
|
|
{ icon: 'mdi-trending-up', text: '状态', link: '/hot' },
|
|
{ icon: 'mdi-trending-up', text: '状态', link: '/hot' },
|
|
|
- { icon: 'mdi-youtube-subscription', text: '订阅', link: '/subscribe' },
|
|
|
|
|
|
|
+ { icon: 'mdi-youtube-subscription', text: '直播', link: '/subscribe' },
|
|
|
{ icon: 'mdi-history', text: '历史记录', link: '/history' },
|
|
{ icon: 'mdi-history', text: '历史记录', link: '/history' },
|
|
|
{ icon: 'mdi-playlist-play', text: '稍后再看', link: '/playlist' }
|
|
{ icon: 'mdi-playlist-play', text: '稍后再看', link: '/playlist' }
|
|
|
|
|
|