Skip to content

Commit 02d98f2

Browse files
author
puhui999
committed
Merge remote-tracking branch 'yudao/dev' into dev
# Conflicts: # src/views/mp/components/wx-editor/WxEditor.vue # src/views/mp/tag/TagForm.vue
2 parents d62e607 + 1a1bfe0 commit 02d98f2

File tree

17 files changed

+908
-873
lines changed

17 files changed

+908
-873
lines changed

build/vite/optimize.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ const include = [
7575
'element-plus/es/components/dropdown-item/style/css',
7676
'element-plus/es/components/badge/style/css',
7777
'element-plus/es/components/breadcrumb/style/css',
78-
'element-plus/es/components/breadcrumb-item/style/css'
78+
'element-plus/es/components/breadcrumb-item/style/css',
79+
'element-plus/es/components/image/style/css'
7980
]
8081

8182
const exclude = ['@iconify/json']

src/components/Icon/src/IconSelect.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ watch(
9595
return props.modelValue
9696
},
9797
() => {
98-
if (props.modelValue && props.modelValue.contains(':')) {
98+
if (props.modelValue && props.modelValue.indexOf(':') >= 0) {
9999
currentActiveType.value = props.modelValue.substring(0, props.modelValue.indexOf(':') + 1)
100100
icon.value = props.modelValue.substring(props.modelValue.indexOf(':') + 1)
101101
}

src/types/auto-imports.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ declare global {
6262
const useRouter: typeof import('vue-router')['useRouter']
6363
const useSlots: typeof import('vue')['useSlots']
6464
const useTable: typeof import('@/hooks/web/useTable')['useTable']
65+
const useVxeCrudSchemas: typeof import('@/hooks/web/useVxeCrudSchemas')['useVxeCrudSchemas']
66+
const useXTable: typeof import('@/hooks/web/useXTable')['useXTable']
6567
const watch: typeof import('vue')['watch']
6668
const watchEffect: typeof import('vue')['watchEffect']
6769
const watchPostEffect: typeof import('vue')['watchPostEffect']

0 commit comments

Comments
 (0)