Commit 561fc119e2f9d4a6fe7a77430226d82183abf3d9

Authored by ww
1 parent 95b1f3ac

fix: data board component page has exist warning

... ... @@ -3,7 +3,7 @@
3 3 import { DropMenu } from '/@/components/Dropdown';
4 4 import Dropdown from '/@/components/Dropdown/src/Dropdown.vue';
5 5 import { Tooltip } from 'ant-design-vue';
6   - import SvgIcon from '/@/components/Icon/src/SvgIcon.vue';
  6 + // import SvgIcon from '/@/components/Icon/src/SvgIcon.vue';
7 7 import { isBataBoardSharePage, MoreActionEvent } from '../../config/config';
8 8 import { computed } from '@vue/reactivity';
9 9 import { usePermission } from '/@/hooks/web/usePermission';
... ... @@ -14,7 +14,7 @@
14 14 const props = defineProps<{
15 15 id: string;
16 16 record: DataSource[];
17   - panelName: string;
  17 + panelName?: string;
18 18 }>();
19 19 const { hasPermission } = usePermission();
20 20 const dropMenuList = computed<DropMenu[]>(() => {
... ...