Various webui fix

fixes #742
Add save button for reordering instead of auto saving
This commit is contained in:
Yukino Song
2025-05-21 00:44:38 +08:00
parent 056c6f4693
commit 6571c11098
6 changed files with 85 additions and 65 deletions

View File

@@ -8,17 +8,9 @@ const props = defineProps({
</script>
<template>
<template v-if="$slots.windows && platform === 'windows'">
<slot name="windows"></slot>
</template>
<template v-if="$slots.linux && platform === 'linux'">
<slot name="linux"></slot>
</template>
<template v-if="$slots.macos && platform === 'macos'">
<slot name="macos"></slot>
</template>
<slot name="windows" v-if="$slots.windows && platform === 'windows'"></slot>
<slot name="linux" v-if="$slots.linux && platform === 'linux'"></slot>
<slot name="macos" v-if="$slots.macos && platform === 'macos'"></slot>
</template>