Aurora Admin v1.2.0: 79 components x 5 ends, doc site, contracts batch 1, playground, regression, deploy ready

This commit is contained in:
aurora-admin
2026-09-10 19:21:56 +08:00
commit 51ce3a28f7
654 changed files with 49082 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
<template>
<div class="aa-switchgroup">
<div class="aa-switchgroup-head" v-if="title || selectAll">
<span class="aa-switchgroup-title">{{ title }}</span>
<div v-if="selectAll" class="aa-switch" :class="{ 'is-on': allOn }" @click="toggleAll"></div>
</div>
<div class="aa-switch-row" v-for="(o, i) in options" :key="i">
<div class="aa-switch-text">
<span class="aa-switch-label">{{ o.label }}</span>
<span class="aa-switch-desc" v-if="o.desc">{{ o.desc }}</span>
</div>
<div class="aa-switch" :class="{ 'is-on': modelValue.indexOf(o.value) >= 0 }" @click="toggle(o.value)"></div>
</div>
</div>
</template>
<script setup>
import { computed } from 'vue';
const props = defineProps({
options: { type: Array, default: () => [] },
modelValue: { type: Array, default: () => [] },
title: { type: String, default: '' },
selectAll: { type: Boolean, default: false }
});
const emit = defineEmits(['update:modelValue']);
const allOn = computed(() =>
props.options.length > 0 && props.options.every(o => props.modelValue.indexOf(o.value) >= 0)
);
function toggle(v) {
const arr = props.modelValue.slice();
const idx = arr.indexOf(v);
if (idx >= 0) arr.splice(idx, 1); else arr.push(v);
emit('update:modelValue', arr);
}
function toggleAll() {
const next = allOn.value ? [] : props.options.map(o => o.value);
emit('update:modelValue', next);
}
</script>
<style src="./SwitchGroup.css"></style>