fix(FloatingPanel): fix missing floatingPanelProps export (#11978)

This commit is contained in:
inottn 2023-06-16 10:07:14 +08:00 committed by GitHub
parent 4dab6b8236
commit 24b1bf4147
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,11 +1,10 @@
import { withInstall } from '../utils';
import _FloatingPanel, { FloatingPanelProps } from './FloatingPanel';
import _FloatingPanel from './FloatingPanel';
export const FloatingPanel = withInstall(_FloatingPanel);
export default FloatingPanel;
export type { FloatingPanelProps };
export { floatingPanelProps } from './FloatingPanel';
export type { FloatingPanelProps } from './FloatingPanel';
declare module 'vue' {
export interface GlobalComponents {