feat: remove apps doc alert

pull/136/head
xingyu4j 2025-06-10 16:33:09 +08:00
parent f32eef482f
commit c54e0a5899
6 changed files with 0 additions and 101 deletions

View File

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

View File

@ -1 +0,0 @@
export { default as DocAlert } from './doc-alert.vue';

View File

@ -1,34 +0,0 @@
<script lang="ts" setup>
import { isDocAlertEnable } from '@vben/hooks';
import { openWindow } from '@vben/utils';
import { ElAlert, ElLink } from 'element-plus';
export interface DocAlertProps {
/**
* 文档标题
*/
title: string;
/**
* 文档 URL 地址
*/
url: string;
}
const props = defineProps<DocAlertProps>();
/** 跳转 URL 链接 */
const goToUrl = () => {
openWindow(props.url);
};
</script>
<template>
<div class="mb-2 rounded">
<ElAlert v-if="isDocAlertEnable()" type="info" :closable="false" show-icon>
<ElLink type="primary" @click="goToUrl">
{{ title }}文档地址{{ url }}
</ElLink>
</ElAlert>
</div>
</template>

View File

@ -1 +0,0 @@
export { default as DocAlert } from './doc-alert.vue';

View File

@ -1,30 +0,0 @@
<script lang="ts" setup>
import { isDocAlertEnable } from '@vben/hooks';
import { openWindow } from '@vben/utils';
import { NAlert, NText } from 'naive-ui';
export interface DocAlertProps {
/**
* 文档标题
*/
title: string;
/**
* 文档 URL 地址
*/
url: string;
}
const props = defineProps<DocAlertProps>();
/** 跳转 URL 链接 */
const goToUrl = () => {
openWindow(props.url);
};
</script>
<template>
<NAlert v-if="isDocAlertEnable()" type="info" show-icon class="mb-2 rounded">
<NText @click="goToUrl"> {{ title }}{{ url }} </NText>
</NAlert>
</template>

View File

@ -1 +0,0 @@
export { default as DocAlert } from './doc-alert.vue';