move to NUXT

This commit is contained in:
Front 2022-01-24 18:16:53 -05:00
parent b1cbd47ed1
commit ab6e8b2faf
20 changed files with 17 additions and 3 deletions

View File

View File

@ -1,11 +1,16 @@
<template>
<v-app dark>
<v-card v-model="value" class="topNav rounded-0">
<span>NotShitTube</span>
</v-card>
<v-app-content>
<nuxt />
</v-app-content>
<v-bottom-navigation v-model="value" >
<v-bottom-navigation v-model="value" class="bottomNav rounded-0">
<v-btn v-for="(item, i) in tabs" :key="i">
<span v-text="item.name" />
@ -17,6 +22,16 @@
</v-app>
</template>
<style scoped>
.topNav {
padding: 1em;
}
.bottomNav {
position: absolute;
bottom: 0;
}
</style>
<script>
export default {
data: () => ({

View File

@ -5,7 +5,6 @@
"requires": true,
"packages": {
"": {
"name": "BetterTube",
"version": "1.0.0",
"dependencies": {
"core-js": "^3.19.3",

View File

Before

Width:  |  Height:  |  Size: 8.4 KiB

After

Width:  |  Height:  |  Size: 8.4 KiB

View File

Before

Width:  |  Height:  |  Size: 5.5 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

Before

Width:  |  Height:  |  Size: 539 B

After

Width:  |  Height:  |  Size: 539 B