mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
70 lines
1.6 KiB
Vue
70 lines
1.6 KiB
Vue
<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>
|