fix: workflow (#8013)

* fix: catelog

* fix: system

* chore: sync upstream changes

* feat:  component and workflow error
This commit is contained in:
afe1
2026-06-05 05:13:08 +08:00
committed by GitHub
parent 6544340d80
commit 748b182e44
2 changed files with 13 additions and 2 deletions

View File

@@ -0,0 +1,3 @@
{
"singleQuote": true
}

View File

@@ -1,5 +1,13 @@
<script lang="ts">
<script setup lang="ts">
import type { DialogOverlayProps } from 'reka-ui';
import { DialogOverlay } from 'reka-ui';
export default DialogOverlay;
const props = defineProps<DialogOverlayProps>();
</script>
<template>
<DialogOverlay data-slot="dialog-overlay" v-bind="props">
<slot></slot>
</DialogOverlay>
</template>