VueTube/NUXT/pages/settings.vue

79 lines
1.8 KiB
Vue
Raw Normal View History

2022-02-24 19:55:29 +00:00
<template>
2022-03-21 23:47:11 +00:00
<div style="padding-top: 1em">
2022-03-14 17:13:24 +00:00
<v-list-item v-for="(item, index) in settingsItems" :key="index">
2022-03-21 23:47:11 +00:00
<v-btn
text
class="entry text-left text-capitalize"
:to="item.to"
:disabled="item.disabled"
>
<v-icon size="30px" class="icon" v-text="item.icon" />
2022-03-14 17:13:24 +00:00
{{ item.name }}
</v-btn>
</v-list-item>
<!-- Dev Mode Open -->
<v-btn text class="entry" @click="dev()" />
2022-03-21 23:47:11 +00:00
</div>
2022-02-24 19:55:29 +00:00
</template>
2022-02-25 00:33:03 +00:00
<script>
export default {
2022-03-14 17:13:24 +00:00
data() {
return {
devClicks: 0,
2022-03-14 17:13:24 +00:00
settingsItems: [
{ name: "General", icon: "mdi-cog", to: "", disabled: true },
{ name: "Theme", icon: "mdi-brush-variant", to: "/mods/theme" },
2022-03-21 23:47:11 +00:00
{
name: "Player",
icon: "mdi-motion-play-outline",
to: "",
disabled: true,
},
{
name: "UI Tweaker",
icon: "mdi-television-guide",
to: "/mods/tweaks",
},
2022-03-16 01:03:34 +00:00
{ name: "Startup Options", icon: "mdi-restart", to: "/mods/startup" },
2022-05-05 23:09:28 +00:00
{
name: "Plugins",
icon: "mdi-puzzle",
to: "/mods/plugins",
disabled: true,
},
2022-03-21 23:47:11 +00:00
{
name: "Updates",
icon: "mdi-cloud-download-outline",
to: "/mods/updates",
},
2022-03-14 17:13:24 +00:00
{ name: "Logs", icon: "mdi-text-box-outline", to: "/mods/logs" },
{ name: "About", icon: "mdi-information-outline", to: "/mods/about" },
2022-03-21 23:47:11 +00:00
],
};
},
methods: {
dev() {
this.devClicks++;
if (this.devClicks >= 6) {
this.$router.push("/mods/developer");
}
},
},
2022-03-21 23:47:11 +00:00
};
2022-02-25 00:33:03 +00:00
</script>
2022-05-05 23:09:28 +00:00
<style scoped>
.entry {
width: 100%;
font-size: 1.2em;
justify-content: left !important;
padding: 1.5em 0.5em 1.5em 0.5em !important;
}
.icon {
margin-right: 0.5em;
}
</style>