mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-25 20:55:17 +00:00
feat: ✨ Material you in startup
This commit is contained in:
parent
6a5f1d192b
commit
a873a7ee7d
1 changed files with 8 additions and 0 deletions
|
@ -4,6 +4,7 @@
|
|||
flat
|
||||
class="pb-5 background"
|
||||
:class="$vuetify.theme.dark ? 'lighten-1' : 'darken-1'"
|
||||
:style="{borderRadius: `${roundTweak / 2}rem`}"
|
||||
>
|
||||
<v-card-title>Default Page</v-card-title>
|
||||
<v-card-text>
|
||||
|
@ -21,6 +22,13 @@
|
|||
|
||||
<script>
|
||||
export default {
|
||||
|
||||
computed: {
|
||||
roundTweak() {
|
||||
return this.$store.state.tweaks.roundTweak;
|
||||
}
|
||||
},
|
||||
|
||||
data() {
|
||||
return {
|
||||
page: "home",
|
||||
|
|
Loading…
Reference in a new issue