fix: 🐛 自动导入组件缺失修复
Former-commit-id: 040613211f4b2fb11a1cc552ee2ae614621ea61f
This commit is contained in:
6
src/types/auto-imports.d.ts
vendored
6
src/types/auto-imports.d.ts
vendored
@@ -5,8 +5,10 @@
|
||||
export {}
|
||||
declare global {
|
||||
const EffectScope: typeof import("vue")["EffectScope"];
|
||||
const ElForm: typeof import("element-plus/es")["ElForm"];
|
||||
const ElMessage: typeof import("element-plus/es")["ElMessage"];
|
||||
const ElMessageBox: typeof import("element-plus/es")["ElMessageBox"];
|
||||
const ElTree: typeof import("element-plus/es")["ElTree"];
|
||||
const asyncComputed: typeof import("@vueuse/core")["asyncComputed"];
|
||||
const autoResetRef: typeof import("@vueuse/core")["autoResetRef"];
|
||||
const computed: typeof import("vue")["computed"];
|
||||
@@ -295,12 +297,14 @@ import { UnwrapRef } from "vue";
|
||||
declare module "vue" {
|
||||
interface ComponentCustomProperties {
|
||||
readonly EffectScope: UnwrapRef<typeof import("vue")["EffectScope"]>;
|
||||
readonly ElForm: UnwrapRef<typeof import("element-plus/es")["ElForm"]>;
|
||||
readonly ElMessage: UnwrapRef<
|
||||
typeof import("element-plus/es")["ElMessage"]
|
||||
>;
|
||||
readonly ElMessageBox: UnwrapRef<
|
||||
typeof import("element-plus/es")["ElMessageBox"]
|
||||
>;
|
||||
readonly ElTree: UnwrapRef<typeof import("element-plus/es")["ElTree"]>;
|
||||
readonly asyncComputed: UnwrapRef<
|
||||
typeof import("@vueuse/core")["asyncComputed"]
|
||||
>;
|
||||
@@ -939,12 +943,14 @@ declare module "vue" {
|
||||
declare module "@vue/runtime-core" {
|
||||
interface ComponentCustomProperties {
|
||||
readonly EffectScope: UnwrapRef<typeof import("vue")["EffectScope"]>;
|
||||
readonly ElForm: UnwrapRef<typeof import("element-plus/es")["ElForm"]>;
|
||||
readonly ElMessage: UnwrapRef<
|
||||
typeof import("element-plus/es")["ElMessage"]
|
||||
>;
|
||||
readonly ElMessageBox: UnwrapRef<
|
||||
typeof import("element-plus/es")["ElMessageBox"]
|
||||
>;
|
||||
readonly ElTree: UnwrapRef<typeof import("element-plus/es")["ElTree"]>;
|
||||
readonly asyncComputed: UnwrapRef<
|
||||
typeof import("@vueuse/core")["asyncComputed"]
|
||||
>;
|
||||
|
||||
Reference in New Issue
Block a user