File tree Expand file tree Collapse file tree 5 files changed +6
-4
lines changed Expand file tree Collapse file tree 5 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,8 @@ declare global {
62
62
const useRouter : typeof import ( 'vue-router' ) [ 'useRouter' ]
63
63
const useSlots : typeof import ( 'vue' ) [ 'useSlots' ]
64
64
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' ]
65
67
const watch : typeof import ( 'vue' ) [ 'watch' ]
66
68
const watchEffect : typeof import ( 'vue' ) [ 'watchEffect' ]
67
69
const watchPostEffect : typeof import ( 'vue' ) [ 'watchPostEffect' ]
Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ import * as MpAutoReplyApi from '@/api/mp/autoReply'
188
188
import { DICT_TYPE , getDictOptions } from ' @/utils/dict'
189
189
import { dateFormatter } from ' @/utils/formatTime'
190
190
import { ContentWrap } from ' @/components/ContentWrap'
191
- import { TabPaneName } from ' element-plus'
191
+ import type { TabPaneName } from ' element-plus'
192
192
193
193
const message = useMessage ()
194
194
Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ import WxMpSelect from '@/views/mp/components/WxMpSelect.vue'
249
249
import { getAccessToken } from ' @/utils/auth'
250
250
import * as MpDraftApi from ' @/api/mp/draft'
251
251
import * as MpFreePublishApi from ' @/api/mp/freePublish'
252
- import { UploadFiles , UploadProps , UploadRawFile } from ' element-plus'
252
+ import type { UploadFiles , UploadProps , UploadRawFile } from ' element-plus'
253
253
// 可以用改本地数据模拟,避免API调用超限
254
254
// import drafts from './mock'
255
255
Original file line number Diff line number Diff line change 19
19
</template >
20
20
<script setup lang="ts">
21
21
import * as MpTagApi from ' @/api/mp/tag'
22
- import { FormInstance , FormRules } from ' element-plus'
22
+ import type { FormInstance , FormRules } from ' element-plus'
23
23
24
24
const { t } = useI18n () // 国际化
25
25
const message = useMessage () // 消息弹窗
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ import { dateFormatter } from '@/utils/formatTime'
98
98
import * as MpUserApi from ' @/api/mp/user'
99
99
import * as MpTagApi from ' @/api/mp/tag'
100
100
import WxMpSelect from ' @/views/mp/components/WxMpSelect.vue'
101
- import { FormInstance } from ' element-plus'
101
+ import type { FormInstance } from ' element-plus'
102
102
import UserForm from ' ./UserForm.vue'
103
103
104
104
const message = useMessage () // 消息
You can’t perform that action at this time.
0 commit comments