mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
types: fix VueConstructor type conflict (#9750)
This commit is contained in:
parent
ad16ac3075
commit
2a8c9cb1b5
@ -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', {
|
||||
|
Loading…
x
Reference in New Issue
Block a user