From 1a2f705b836cad1d8a6d33a6c4ff731e2857cb8c Mon Sep 17 00:00:00 2001 From: HQ-Lin Date: Thu, 3 Mar 2022 14:40:09 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=20affix=20=E5=AF=BC?= =?UTF-8?q?=E5=87=BA=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/affix/index.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/affix/index.ts b/src/affix/index.ts index a1a40e1aa..eb7499a9c 100644 --- a/src/affix/index.ts +++ b/src/affix/index.ts @@ -1,10 +1,9 @@ -import Affix from './Affix'; +import _Affix from './Affix'; import './style/index.js'; -export { Affix }; - export type { AffixProps, AffixRef } from './Affix'; export * from './type'; +export const Affix = _Affix; export default Affix;