UNPKG

@nativescript-community/ui-collectionview

Version:

Allows you to easily add a collection view (grid list view) to your projects. Supports vertical and horizontal modes, templating, and more.

12 lines (11 loc) 330 B
import { CollectionView as VueCollectionView } from './component'; import '@vue/runtime-core'; declare const CollectionViewPlugin: { install(app: any): void; }; declare module '@vue/runtime-core' { interface GlobalComponents { CollectionView: typeof VueCollectionView; } } export default CollectionViewPlugin;