fix: workflow (#8013)

* fix: catelog

* fix: system

* chore: sync upstream changes

* feat:  component and workflow error
pull/355/head^2
afe1 2026-06-05 05:13:08 +08:00 committed by GitHub
parent 6544340d80
commit 748b182e44
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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'; import { DialogOverlay } from 'reka-ui';
export default DialogOverlay; const props = defineProps<DialogOverlayProps>();
</script> </script>
<template>
<DialogOverlay data-slot="dialog-overlay" v-bind="props">
<slot></slot>
</DialogOverlay>
</template>