update
Some checks failed
Deploy / deploy (push) Has been cancelled

This commit is contained in:
2025-10-12 15:57:59 +08:00
parent 4335ffb1e1
commit 87d2b828a1
9 changed files with 63 additions and 21 deletions

View File

@@ -0,0 +1,20 @@
<script lang="ts" setup>
import { useBreakpoints } from "shared/composables/breakpoints"
const { isDesktop } = useBreakpoints()
const message = useMessage()
const submit = () => {
message.warning("暂未实现")
}
</script>
<template>
<n-button
:size="isDesktop ? 'medium' : 'small'"
type="primary"
@click="submit"
>
提交流程图
</n-button>
</template>