11 lines
270 B
TypeScript
11 lines
270 B
TypeScript
|
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 };
|