mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
10 lines
151 B
TypeScript
10 lines
151 B
TypeScript
import { App } from 'vue';
|
|
|
|
export class VanComponent {
|
|
static name: string;
|
|
|
|
static install: (app: App) => any;
|
|
|
|
$props: Record<string, any>;
|
|
}
|