Files
iot-device-management-frontend/apps/web-antd/src/components/doc-alert/doc-alert.vue

39 lines
682 B
Vue
Raw Normal View History

2025-04-05 17:09:16 +08:00
<script lang="ts" setup>
import { isDocAlertEnable } from '@vben/hooks';
2025-04-05 17:09:16 +08:00
import { Alert, Typography } from 'ant-design-vue';
export interface DocAlertProps {
/**
* 文档标题
*/
title: string;
/**
* 文档 URL 地址
*/
url: string;
}
const props = defineProps<DocAlertProps>();
/** 跳转 URL 链接 */
const goToUrl = () => {
window.open(props.url);
};
</script>
<template>
<Alert
v-if="isDocAlertEnable()"
2025-04-05 17:09:16 +08:00
type="info"
show-icon
class="mb-2 rounded"
>
<template #message>
<Typography.Link @click="goToUrl">
{{ title }}文档地址{{ url }}
</Typography.Link>
</template>
</Alert>
</template>