uniapp-dyckui 4.1.7 → 4.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,6 +2,7 @@
2
2
 
3
3
  // 基础组件
4
4
  import Button from './Button/index.vue'
5
+
5
6
  import Dialog from './Dialog/index.vue'
6
7
  import Divider from './Divider/index.vue'
7
8
  // 导出组合式函数
@@ -9,19 +10,21 @@ import { useDropdownSelect } from './DropdownSelect/dropdownSelect'
9
10
  // 表单组件
10
11
  import DropdownSelect from './DropdownSelect/index.vue'
11
12
  import { useDropdownWithBadge } from './DropdownWithBadge/dropdownWithBadge'
12
-
13
13
  import DropdownWithBadge from './DropdownWithBadge/index.vue'
14
+
14
15
  // 筛选组件
15
16
  import FilterDrawer from './FilterDrawer/index.vue'
16
-
17
17
  import { useFilterDrawer } from './FilterDrawer/useFilterDrawer'
18
+
18
19
  // 交互组件
19
20
  import InfiniteScroll from './InfiniteScroll/index.vue'
20
21
  import Popup from './Popup/index.vue'
21
-
22
22
  import PullRefresh from './PullRefresh/index.vue'
23
+
23
24
  import Swiper from './Swiper/index.vue'
24
25
  import Toast from './Toast/index.vue'
26
+ // 导入字体图标样式
27
+ import '@/assets/font/iconfont.css'
25
28
 
26
29
  export type { DropdownSelectEmits, DropdownSelectProps } from './DropdownSelect/type'
27
30