mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 04:23:01 +00:00
initialize settings page
This commit is contained in:
@@ -0,0 +1,69 @@
|
||||
<template>
|
||||
<div class="settingscontent">
|
||||
<Group
|
||||
v-for="(group, index) in settingGroups[current].groups"
|
||||
:key="index"
|
||||
:group="group"
|
||||
/><Group
|
||||
v-for="(group, index) in settingGroups[current].groups"
|
||||
:key="index"
|
||||
:group="group"
|
||||
/><Group
|
||||
v-for="(group, index) in settingGroups[current].groups"
|
||||
:key="index"
|
||||
:group="group"
|
||||
/><Group
|
||||
v-for="(group, index) in settingGroups[current].groups"
|
||||
:key="index"
|
||||
:group="group"
|
||||
/><Group
|
||||
v-for="(group, index) in settingGroups[current].groups"
|
||||
:key="index"
|
||||
:group="group"
|
||||
/><Group
|
||||
v-for="(group, index) in settingGroups[current].groups"
|
||||
:key="index"
|
||||
:group="group"
|
||||
/><Group
|
||||
v-for="(group, index) in settingGroups[current].groups"
|
||||
:key="index"
|
||||
:group="group"
|
||||
/><Group
|
||||
v-for="(group, index) in settingGroups[current].groups"
|
||||
:key="index"
|
||||
:group="group"
|
||||
/><Group
|
||||
v-for="(group, index) in settingGroups[current].groups"
|
||||
:key="index"
|
||||
:group="group"
|
||||
/><Group
|
||||
v-for="(group, index) in settingGroups[current].groups"
|
||||
:key="index"
|
||||
:group="group"
|
||||
/><Group
|
||||
v-for="(group, index) in settingGroups[current].groups"
|
||||
:key="index"
|
||||
:group="group"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import settingGroups from "@/settings";
|
||||
import Group from "./Group.vue";
|
||||
|
||||
defineProps<{
|
||||
current: number;
|
||||
}>();
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.settingscontent {
|
||||
width: 100%;
|
||||
max-width: 40rem;
|
||||
padding-right: 1rem;
|
||||
margin: 0 auto;
|
||||
|
||||
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user