fix: 🐛 自动导入缺失补充
Former-commit-id: 0716786f7af165a844f858657bb897ce4cf579c3
This commit is contained in:
13
src/types/auto-imports.d.ts
vendored
13
src/types/auto-imports.d.ts
vendored
@@ -5,9 +5,10 @@
|
|||||||
export {}
|
export {}
|
||||||
declare global {
|
declare global {
|
||||||
const EffectScope: typeof import("vue")["EffectScope"];
|
const EffectScope: typeof import("vue")["EffectScope"];
|
||||||
|
const ElForm: typeof import("element-plus/es")["ElForm"];
|
||||||
const ElMessage: typeof import("element-plus/es")["ElMessage"];
|
const ElMessage: typeof import("element-plus/es")["ElMessage"];
|
||||||
const ElMessageBox: typeof import("element-plus/es")["ElMessageBox"];
|
const ElMessageBox: typeof import("element-plus/es")["ElMessageBox"];
|
||||||
const ElNotification: typeof import("element-plus/es")["ElNotification"];
|
const ElTree: typeof import("element-plus/es")["ElTree"];
|
||||||
const asyncComputed: typeof import("@vueuse/core")["asyncComputed"];
|
const asyncComputed: typeof import("@vueuse/core")["asyncComputed"];
|
||||||
const autoResetRef: typeof import("@vueuse/core")["autoResetRef"];
|
const autoResetRef: typeof import("@vueuse/core")["autoResetRef"];
|
||||||
const computed: typeof import("vue")["computed"];
|
const computed: typeof import("vue")["computed"];
|
||||||
@@ -296,15 +297,14 @@ import { UnwrapRef } from "vue";
|
|||||||
declare module "vue" {
|
declare module "vue" {
|
||||||
interface ComponentCustomProperties {
|
interface ComponentCustomProperties {
|
||||||
readonly EffectScope: UnwrapRef<typeof import("vue")["EffectScope"]>;
|
readonly EffectScope: UnwrapRef<typeof import("vue")["EffectScope"]>;
|
||||||
|
readonly ElForm: UnwrapRef<typeof import("element-plus/es")["ElForm"]>;
|
||||||
readonly ElMessage: UnwrapRef<
|
readonly ElMessage: UnwrapRef<
|
||||||
typeof import("element-plus/es")["ElMessage"]
|
typeof import("element-plus/es")["ElMessage"]
|
||||||
>;
|
>;
|
||||||
readonly ElMessageBox: UnwrapRef<
|
readonly ElMessageBox: UnwrapRef<
|
||||||
typeof import("element-plus/es")["ElMessageBox"]
|
typeof import("element-plus/es")["ElMessageBox"]
|
||||||
>;
|
>;
|
||||||
readonly ElNotification: UnwrapRef<
|
readonly ElTree: UnwrapRef<typeof import("element-plus/es")["ElTree"]>;
|
||||||
typeof import("element-plus/es")["ElNotification"]
|
|
||||||
>;
|
|
||||||
readonly asyncComputed: UnwrapRef<
|
readonly asyncComputed: UnwrapRef<
|
||||||
typeof import("@vueuse/core")["asyncComputed"]
|
typeof import("@vueuse/core")["asyncComputed"]
|
||||||
>;
|
>;
|
||||||
@@ -943,15 +943,14 @@ declare module "vue" {
|
|||||||
declare module "@vue/runtime-core" {
|
declare module "@vue/runtime-core" {
|
||||||
interface ComponentCustomProperties {
|
interface ComponentCustomProperties {
|
||||||
readonly EffectScope: UnwrapRef<typeof import("vue")["EffectScope"]>;
|
readonly EffectScope: UnwrapRef<typeof import("vue")["EffectScope"]>;
|
||||||
|
readonly ElForm: UnwrapRef<typeof import("element-plus/es")["ElForm"]>;
|
||||||
readonly ElMessage: UnwrapRef<
|
readonly ElMessage: UnwrapRef<
|
||||||
typeof import("element-plus/es")["ElMessage"]
|
typeof import("element-plus/es")["ElMessage"]
|
||||||
>;
|
>;
|
||||||
readonly ElMessageBox: UnwrapRef<
|
readonly ElMessageBox: UnwrapRef<
|
||||||
typeof import("element-plus/es")["ElMessageBox"]
|
typeof import("element-plus/es")["ElMessageBox"]
|
||||||
>;
|
>;
|
||||||
readonly ElNotification: UnwrapRef<
|
readonly ElTree: UnwrapRef<typeof import("element-plus/es")["ElTree"]>;
|
||||||
typeof import("element-plus/es")["ElNotification"]
|
|
||||||
>;
|
|
||||||
readonly asyncComputed: UnwrapRef<
|
readonly asyncComputed: UnwrapRef<
|
||||||
typeof import("@vueuse/core")["asyncComputed"]
|
typeof import("@vueuse/core")["asyncComputed"]
|
||||||
>;
|
>;
|
||||||
|
|||||||
26
src/types/components.d.ts
vendored
26
src/types/components.d.ts
vendored
@@ -13,6 +13,7 @@ declare module "@vue/runtime-core" {
|
|||||||
BarChart: typeof import("./../views/dashboard/components/BarChart.vue")["default"];
|
BarChart: typeof import("./../views/dashboard/components/BarChart.vue")["default"];
|
||||||
Breadcrumb: typeof import("./../components/Breadcrumb/index.vue")["default"];
|
Breadcrumb: typeof import("./../components/Breadcrumb/index.vue")["default"];
|
||||||
Dictionary: typeof import("./../components/Dictionary/index.vue")["default"];
|
Dictionary: typeof import("./../components/Dictionary/index.vue")["default"];
|
||||||
|
ElAlert: typeof import("element-plus/es")["ElAlert"];
|
||||||
ElBreadcrumb: typeof import("element-plus/es")["ElBreadcrumb"];
|
ElBreadcrumb: typeof import("element-plus/es")["ElBreadcrumb"];
|
||||||
ElBreadcrumbItem: typeof import("element-plus/es")["ElBreadcrumbItem"];
|
ElBreadcrumbItem: typeof import("element-plus/es")["ElBreadcrumbItem"];
|
||||||
ElButton: typeof import("element-plus/es")["ElButton"];
|
ElButton: typeof import("element-plus/es")["ElButton"];
|
||||||
@@ -28,12 +29,18 @@ declare module "@vue/runtime-core" {
|
|||||||
ElDropdownMenu: typeof import("element-plus/es")["ElDropdownMenu"];
|
ElDropdownMenu: typeof import("element-plus/es")["ElDropdownMenu"];
|
||||||
ElForm: typeof import("element-plus/es")["ElForm"];
|
ElForm: typeof import("element-plus/es")["ElForm"];
|
||||||
ElFormItem: typeof import("element-plus/es")["ElFormItem"];
|
ElFormItem: typeof import("element-plus/es")["ElFormItem"];
|
||||||
|
ElIcon: typeof import("element-plus/es")["ElIcon"];
|
||||||
ElInput: typeof import("element-plus/es")["ElInput"];
|
ElInput: typeof import("element-plus/es")["ElInput"];
|
||||||
|
ElInputNumber: typeof import("element-plus/es")["ElInputNumber"];
|
||||||
ElLink: typeof import("element-plus/es")["ElLink"];
|
ElLink: typeof import("element-plus/es")["ElLink"];
|
||||||
ElMenu: typeof import("element-plus/es")["ElMenu"];
|
ElMenu: typeof import("element-plus/es")["ElMenu"];
|
||||||
ElMenuItem: typeof import("element-plus/es")["ElMenuItem"];
|
ElMenuItem: typeof import("element-plus/es")["ElMenuItem"];
|
||||||
ElOption: typeof import("element-plus/es")["ElOption"];
|
ElOption: typeof import("element-plus/es")["ElOption"];
|
||||||
ElPagination: typeof import("element-plus/es")["ElPagination"];
|
ElPagination: typeof import("element-plus/es")["ElPagination"];
|
||||||
|
ElPopover: typeof import("element-plus/es")["ElPopover"];
|
||||||
|
ElRadio: typeof import("element-plus/es")["ElRadio"];
|
||||||
|
ElRadioButton: typeof import("element-plus/es")["ElRadioButton"];
|
||||||
|
ElRadioGroup: typeof import("element-plus/es")["ElRadioGroup"];
|
||||||
ElRate: typeof import("element-plus/es")["ElRate"];
|
ElRate: typeof import("element-plus/es")["ElRate"];
|
||||||
ElRow: typeof import("element-plus/es")["ElRow"];
|
ElRow: typeof import("element-plus/es")["ElRow"];
|
||||||
ElScrollbar: typeof import("element-plus/es")["ElScrollbar"];
|
ElScrollbar: typeof import("element-plus/es")["ElScrollbar"];
|
||||||
@@ -42,17 +49,36 @@ declare module "@vue/runtime-core" {
|
|||||||
ElSwitch: typeof import("element-plus/es")["ElSwitch"];
|
ElSwitch: typeof import("element-plus/es")["ElSwitch"];
|
||||||
ElTable: typeof import("element-plus/es")["ElTable"];
|
ElTable: typeof import("element-plus/es")["ElTable"];
|
||||||
ElTableColumn: typeof import("element-plus/es")["ElTableColumn"];
|
ElTableColumn: typeof import("element-plus/es")["ElTableColumn"];
|
||||||
|
ElTabPane: typeof import("element-plus/es")["ElTabPane"];
|
||||||
|
ElTabs: typeof import("element-plus/es")["ElTabs"];
|
||||||
ElTag: typeof import("element-plus/es")["ElTag"];
|
ElTag: typeof import("element-plus/es")["ElTag"];
|
||||||
ElTooltip: typeof import("element-plus/es")["ElTooltip"];
|
ElTooltip: typeof import("element-plus/es")["ElTooltip"];
|
||||||
|
ElTree: typeof import("element-plus/es")["ElTree"];
|
||||||
|
ElTreeSelect: typeof import("element-plus/es")["ElTreeSelect"];
|
||||||
|
ElUpload: typeof import("element-plus/es")["ElUpload"];
|
||||||
FixedThead: typeof import("./../views/table/dynamic-table/components/FixedThead.vue")["default"];
|
FixedThead: typeof import("./../views/table/dynamic-table/components/FixedThead.vue")["default"];
|
||||||
FunnelChart: typeof import("./../views/dashboard/components/FunnelChart.vue")["default"];
|
FunnelChart: typeof import("./../views/dashboard/components/FunnelChart.vue")["default"];
|
||||||
GithubCorner: typeof import("./../components/GithubCorner/index.vue")["default"];
|
GithubCorner: typeof import("./../components/GithubCorner/index.vue")["default"];
|
||||||
Hamburger: typeof import("./../components/Hamburger/index.vue")["default"];
|
Hamburger: typeof import("./../components/Hamburger/index.vue")["default"];
|
||||||
IconSelect: typeof import("./../components/IconSelect/index.vue")["default"];
|
IconSelect: typeof import("./../components/IconSelect/index.vue")["default"];
|
||||||
|
IEpArrowDown: typeof import("~icons/ep/arrow-down")["default"];
|
||||||
IEpCaretBottom: typeof import("~icons/ep/caret-bottom")["default"];
|
IEpCaretBottom: typeof import("~icons/ep/caret-bottom")["default"];
|
||||||
|
IEpCaretTop: typeof import("~icons/ep/caret-top")["default"];
|
||||||
IEpClose: typeof import("~icons/ep/close")["default"];
|
IEpClose: typeof import("~icons/ep/close")["default"];
|
||||||
|
IEpCollection: typeof import("~icons/ep/collection")["default"];
|
||||||
|
IEpDelete: typeof import("~icons/ep/delete")["default"];
|
||||||
IEpDownload: typeof import("~icons/ep/download")["default"];
|
IEpDownload: typeof import("~icons/ep/download")["default"];
|
||||||
|
IEpEdit: typeof import("~icons/ep/edit")["default"];
|
||||||
|
IEpPlus: typeof import("~icons/ep/plus")["default"];
|
||||||
|
IEpPosition: typeof import("~icons/ep/position")["default"];
|
||||||
|
IEpRefresh: typeof import("~icons/ep/refresh")["default"];
|
||||||
|
IEpRefreshLeft: typeof import("~icons/ep/refresh-left")["default"];
|
||||||
|
IEpSearch: typeof import("~icons/ep/search")["default"];
|
||||||
IEpSetting: typeof import("~icons/ep/setting")["default"];
|
IEpSetting: typeof import("~icons/ep/setting")["default"];
|
||||||
|
IEpSortDown: typeof import("~icons/ep/sort-down")["default"];
|
||||||
|
IEpSortUp: typeof import("~icons/ep/sort-up")["default"];
|
||||||
|
IEpTop: typeof import("~icons/ep/top")["default"];
|
||||||
|
IEpUploadFilled: typeof import("~icons/ep/upload-filled")["default"];
|
||||||
LangSelect: typeof import("./../components/LangSelect/index.vue")["default"];
|
LangSelect: typeof import("./../components/LangSelect/index.vue")["default"];
|
||||||
Link: typeof import("./../layout/components/Sidebar/Link.vue")["default"];
|
Link: typeof import("./../layout/components/Sidebar/Link.vue")["default"];
|
||||||
Logo: typeof import("./../layout/components/Sidebar/Logo.vue")["default"];
|
Logo: typeof import("./../layout/components/Sidebar/Logo.vue")["default"];
|
||||||
|
|||||||
Reference in New Issue
Block a user