We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cc35671 + d4e7b59 commit 196d2dcCopy full SHA for 196d2dc
components/table/index.tsx
@@ -1,4 +1,4 @@
1
-import { App, defineComponent } from 'vue';
+import { App, defineComponent, Plugin } from 'vue';
2
import T, { defaultTableProps } from './Table';
3
import Column from './Column';
4
import ColumnGroup from './ColumnGroup';
@@ -94,7 +94,8 @@ Table.install = function(app: App) {
94
return app;
95
};
96
97
-export default Table as typeof Table & {
98
- readonly Column: typeof Column;
99
- readonly ColumnGroup: typeof ColumnGroup;
100
-};
+export default Table as typeof Table &
+ Plugin & {
+ readonly Column: typeof Column;
+ readonly ColumnGroup: typeof ColumnGroup;
101
+ };
0 commit comments