@indielayer/ui
Version:
Indielayer UI Components with Tailwind CSS build for Vue 3
15 lines (13 loc) • 342 B
text/typescript
import * as components from './components'
import { XVirtualGrid, XVirtualList, XInfiniteLoader } from './virtual'
import create from './create'
export default create({
components: [
...Object.keys(components).map(
(key) => components[key as keyof object],
),
XVirtualList,
XVirtualGrid,
XInfiniteLoader,
],
})