chore: init read-star monorepo

This commit is contained in:
2026-01-16 13:06:44 +08:00
commit 1e510efe8e
508 changed files with 44803 additions and 0 deletions

View File

@ -0,0 +1,24 @@
<script setup lang="ts">
defineOptions({
name: 'SettingItem',
})
defineProps<Props>()
interface Props {
/** Label */
label: string
}
</script>
<template>
<div class="w-full flex-y-center justify-between">
<div class="flex-y-center">
<span class="pr-8px text-base-text">{{ label }}</span>
<slot name="suffix" />
</div>
<slot />
</div>
</template>
<style scoped></style>