mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-16 00:15:08 +00:00
59 lines
1 KiB
Vue
59 lines
1 KiB
Vue
<template>
|
|
<div class="mainContainer pt-1">
|
|
<v-card
|
|
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>
|
|
<v-select
|
|
v-model="page"
|
|
background-color="background"
|
|
:items="pages"
|
|
label="Default Page"
|
|
solo
|
|
></v-select>
|
|
</v-card-text>
|
|
</v-card>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
|
|
computed: {
|
|
roundTweak() {
|
|
return this.$store.state.tweaks.roundTweak;
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
page: "home",
|
|
pages: ["home", "subscriptions", "library"],
|
|
};
|
|
},
|
|
|
|
watch: {
|
|
page: function (newVal) {
|
|
localStorage.setItem("startPage", newVal);
|
|
},
|
|
},
|
|
|
|
mounted() {
|
|
this.page = localStorage.getItem("startPage") || "home";
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.v-card {
|
|
margin: 1em;
|
|
}
|
|
|
|
section {
|
|
padding: 0 1em 1em 1em;
|
|
}
|
|
</style>
|