swiper-next
Version:
Vue3 的 Swiper 组件
23 lines (21 loc) • 801 B
TypeScript
import { defineComponent } from 'vue';
/**
* 内置组件(对外,比如view)
* @param options
* @returns
*/
export declare const defineBuiltInComponent: typeof defineComponent;
/**
* 系统组件(不对外,比如App,Page等)
* @param options
* @returns
*/
export declare const defineSystemComponent: typeof defineComponent;
/**
* 暂未支持的组件
* @param name
* @returns
*/
export declare const defineUnsupportedComponent: (name: string) => import('vue').DefineComponent<{}, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
[key: string]: any;
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;