新增 CLAUDE.md 文件以提供项目指导,添加 .claudeignore 文件以排除不必要的文件,更新 pom.xml 版本至 3.9.2,修复多个路径遍历和 SQL 注入漏洞,优化字典翻译切面逻辑,增强文件上传和下载的安全性,新增音频文件类型支持,改进动态数据源的安全校验。
This commit is contained in:
@@ -1,5 +1,25 @@
|
||||
<template>
|
||||
<PageWrapper title="Icon组件示例">
|
||||
<PageWrapper title="图标使用示例">
|
||||
<CollapseContainer title="Icon组件中iconfiy图标使用(不推荐使用,项目中所有图标都构建在一个js且首屏就加载,没有分割到chuck中,不是按需引入)" class="my-5">
|
||||
<div class="flex justify-around flex-wrap">
|
||||
<Icon icon="ion:layers-outline" :size="30" />
|
||||
<Icon icon="ion:bar-chart-outline" :size="30" />
|
||||
<Icon icon="ion:tv-outline" :size="30" />
|
||||
<Icon icon="ion:settings-outline" :size="30" />
|
||||
<Icon icon="ion:language" :size="30" />
|
||||
</div>
|
||||
</CollapseContainer>
|
||||
|
||||
<CollapseContainer title="推荐直接使用iconify原生组件(分割到chunk中,按需引入)" class="my-5">
|
||||
<div class="flex justify-around flex-wrap">
|
||||
<IconifyonLayersOutline class="text-30px" />
|
||||
<IconifyIonBarChartOutline class="text-30px" />
|
||||
<IconifyIonTvOutline class="text-30px" />
|
||||
<IconifyIonSettingsOutline class="text-30px" />
|
||||
<IconIonLanguage class="text-30px" />
|
||||
</div>
|
||||
</CollapseContainer>
|
||||
|
||||
<CollapseContainer title="Antv Icon使用 (直接按需引入相应组件即可)">
|
||||
<div class="flex justify-around">
|
||||
<GithubFilled :style="{ fontSize: '30px' }" />
|
||||
@@ -12,15 +32,6 @@
|
||||
</div>
|
||||
</CollapseContainer>
|
||||
|
||||
<CollapseContainer title="IconIfy 组件使用" class="my-5">
|
||||
<div class="flex justify-around flex-wrap">
|
||||
<Icon icon="ion:layers-outline" :size="30" />
|
||||
<Icon icon="ion:bar-chart-outline" :size="30" />
|
||||
<Icon icon="ion:tv-outline" :size="30" />
|
||||
<Icon icon="ion:settings-outline" :size="30" />
|
||||
</div>
|
||||
</CollapseContainer>
|
||||
|
||||
<CollapseContainer title="svg 雪碧图" class="my-5">
|
||||
<div class="flex justify-around flex-wrap">
|
||||
<SvgIcon name="test" size="32" />
|
||||
@@ -68,7 +79,7 @@
|
||||
|
||||
import { openWindow } from '/@/utils';
|
||||
import { PageWrapper } from '/@/components/Page';
|
||||
|
||||
import IconIonLanguage from '~icons/ion/language'
|
||||
export default defineComponent({
|
||||
components: {
|
||||
PageWrapper,
|
||||
@@ -84,6 +95,7 @@
|
||||
Alert,
|
||||
IconPicker,
|
||||
SvgIcon,
|
||||
IconIonLanguage,
|
||||
},
|
||||
setup() {
|
||||
return {
|
||||
|
||||
Reference in New Issue
Block a user