|
@@ -24,7 +24,7 @@
|
|
|
<MenuItem v-bind="{ key: item.value }">
|
|
|
{{ item.label }}
|
|
|
</MenuItem>
|
|
|
- <MenuDivider v-if="item.divider" />
|
|
|
+ <Menu.Divider v-if="item.divider" />
|
|
|
</template>
|
|
|
</Menu>
|
|
|
</template>
|
|
@@ -34,7 +34,7 @@
|
|
|
</template>
|
|
|
<script lang="ts" setup>
|
|
|
import { computed, ref, watch, useSlots } from 'vue';
|
|
|
- import { Dropdown, Menu, MenuItem, MenuDivider, InputSearch } from 'ant-design-vue';
|
|
|
+ import { Dropdown, Menu, MenuItem, InputSearch } from 'ant-design-vue';
|
|
|
import { Icon } from '/@/components/Icon';
|
|
|
import { BasicTitle } from '/@/components/Basic';
|
|
|
import { useI18n } from '/@/hooks/web/useI18n';
|