import { defineComponent } from 'vue' import useSearchStore from './useSearchStore' import jump from '@/utils/jump' import useSearchConfigStore from './useSearchConfigStore' import { OhVueIcon, addIcons } from 'oh-vue-icons' import { MdSearch } from 'oh-vue-icons/icons' import { aIUrl, translateUrl } from '@/config' addIcons(MdSearch) export const Item = defineComponent({ props: { icon: { type: Object, default: null }, label: { type: String, default: '' }, path: { type: String, default: '' }, prefix: { type: String, default: '' }, num: { type: Number, default: 0 }, current: { type: Number, default: -1 } }, setup(props) { const searchConfig = useSearchConfigStore() const search = useSearchStore() return () => (