types: fix VueConstructor type conflict (#9750)

This commit is contained in:
neverland 2021-10-29 13:08:50 +08:00 committed by GitHub
parent ad16ac3075
commit 2a8c9cb1b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,16 +2,8 @@ import Vue from 'vue';
import { deepAssign } from '../utils/deep-assign';
import defaultMessages from './lang/zh-CN';
declare module 'vue' {
interface VueConstructor {
util: {
defineReactive(obj: object, key: string, value: any): void;
};
}
}
const proto = Vue.prototype;
const { defineReactive } = Vue.util;
const { defineReactive } = (Vue as any).util;
defineReactive(proto, '$vantLang', 'zh-CN');
defineReactive(proto, '$vantMessages', {