From 61967da6bb24709fb517e9613f4221146c661e43 Mon Sep 17 00:00:00 2001 From: Kira Date: Wed, 22 Jul 2020 15:56:47 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E5=8A=A0=E4=B8=8A=E6=B3=A8?= =?UTF-8?q?=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/core/decorator/decorator.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/typescript/core/decorator/decorator.ts b/typescript/core/decorator/decorator.ts index 73f7fd910..29ca97c55 100644 --- a/typescript/core/decorator/decorator.ts +++ b/typescript/core/decorator/decorator.ts @@ -46,6 +46,7 @@ export function store(Model: Constructor & {xtype: string}, opts: { props? /** * 注册mixin + * ie8下不能使用 */ export function mixin() { return function decorator(Target: Constructor & { xtype: string }): void { @@ -67,6 +68,7 @@ export function mixin() { /** * 类注册mixins属性 + * ie8下不能使用 * @param Mixins */ export function mixins(...Mixins: ({ new (...args: any[]): {} } & { xtype: string })[]) {