mirror of
https://github.com/EstrellaXD/Auto_Bangumi.git
synced 2026-05-11 18:45:58 +08:00
Restyle config components (ab-container, ab-fold-panel, ab-label, ab-setting) and all config-* setting panels to use the new design system. Add empty state guides with setup steps for downloader and player pages. Simplify log page layout. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
24 lines
597 B
Vue
24 lines
597 B
Vue
<script lang="ts" setup>
|
|
const { types, type, url } = storeToRefs(usePlayerStore());
|
|
</script>
|
|
|
|
<template>
|
|
<ab-fold-panel :title="$t('config.media_player_set.title')">
|
|
<div space-y-8>
|
|
<ab-setting
|
|
v-model:data="type"
|
|
type="select"
|
|
:label="$t('config.media_player_set.type')"
|
|
:prop="{ items: types }"
|
|
></ab-setting>
|
|
|
|
<ab-setting
|
|
v-model:data="url"
|
|
type="input"
|
|
:label="$t('config.media_player_set.url')"
|
|
:prop="{ placeholder: 'media player url' }"
|
|
></ab-setting>
|
|
</div>
|
|
</ab-fold-panel>
|
|
</template>
|