mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
13 lines
304 B
TypeScript
13 lines
304 B
TypeScript
import { withInstall } from '../utils';
|
|
import _Circle from './Circle';
|
|
|
|
export const Circle = withInstall(_Circle);
|
|
export default Circle;
|
|
export type { CircleProps, CircleStartPosition } from './Circle';
|
|
|
|
declare module 'vue' {
|
|
export interface GlobalComponents {
|
|
VanCircle: typeof Circle;
|
|
}
|
|
}
|