ant-design-vue/components/segmented/index.ts

11 lines
270 B
TypeScript
Raw Normal View History

2023-02-18 08:16:44 +00:00
import type { App } from 'vue';
import Segmented from './src';
import type { SegmentedProps } from './src';
Segmented.install = function (app: App) {
app.component(Segmented.name, Segmented);
return app;
};
export default Segmented;
export type { SegmentedProps };