VueTube/NUXT/pages/settings.vue

38 lines
710 B
Vue
Raw Normal View History

2022-02-24 19:55:29 +00:00
<template>
<div class="mainContainer">
<v-card>
<v-card-title>Theme</v-card-title>
<section>
<v-switch
v-model="$vuetify.theme.dark"
label="Dark Theme"
hint="Bravo Six, Going Dark."
persistent-hint
/>
</section>
</v-card>
2022-02-24 19:55:29 +00:00
2022-02-24 22:29:34 +00:00
<v-card>
<v-card-title>Debug</v-card-title>
<section>
<div style="color: #999;">This is just a temporary section for messing with the tool while it's still being worked on :)</div>
<v-btn to="/watch">Open Watch Page</v-btn>
</section>
</v-card>
2022-02-24 19:55:29 +00:00
</div>
</template>
<style scoped>
2022-02-24 22:29:34 +00:00
.v-card {
margin: 1em;
}
2022-02-24 22:29:34 +00:00
section {
padding: 0 1em 1em 1em;
2022-02-24 19:55:29 +00:00
}
</style>