fix: 🐛 自动导入组件缺失修复
Former-commit-id: 040613211f4b2fb11a1cc552ee2ae614621ea61f
This commit is contained in:
1582
auto-imports.d.ts
vendored
1582
auto-imports.d.ts
vendored
File diff suppressed because it is too large
Load Diff
6
src/types/auto-imports.d.ts
vendored
6
src/types/auto-imports.d.ts
vendored
@@ -5,8 +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 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"];
|
||||||
@@ -295,12 +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 ElTree: UnwrapRef<typeof import("element-plus/es")["ElTree"]>;
|
||||||
readonly asyncComputed: UnwrapRef<
|
readonly asyncComputed: UnwrapRef<
|
||||||
typeof import("@vueuse/core")["asyncComputed"]
|
typeof import("@vueuse/core")["asyncComputed"]
|
||||||
>;
|
>;
|
||||||
@@ -939,12 +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 ElTree: UnwrapRef<typeof import("element-plus/es")["ElTree"]>;
|
||||||
readonly asyncComputed: UnwrapRef<
|
readonly asyncComputed: UnwrapRef<
|
||||||
typeof import("@vueuse/core")["asyncComputed"]
|
typeof import("@vueuse/core")["asyncComputed"]
|
||||||
>;
|
>;
|
||||||
|
|||||||
Reference in New Issue
Block a user