Merge remote-tracking branch 'origin/dev' into dev

# Conflicts:
#	apps/web-antd/src/views/infra/demo/demo01/index.vue
This commit is contained in:
YunaiV
2025-05-06 22:33:23 +08:00
102 changed files with 740 additions and 1021 deletions

View File

@@ -1,5 +1,6 @@
<script lang="ts" setup>
import { isDocAlertEnable } from '@vben/hooks';
import { openWindow } from '@vben/utils';
import { Alert, Typography } from 'ant-design-vue';
@@ -18,7 +19,7 @@ const props = defineProps<DocAlertProps>();
/** 跳转 URL 链接 */
const goToUrl = () => {
window.open(props.url);
openWindow(props.url);
};
</script>