UNPKG

@varlet/ui

Version:

A Vue3 component library based on Material Design 2 and 3, supporting mobile and desktop.

19 lines (18 loc) 535 B
import { useChildren } from "@varlet/use"; const BOTTOM_NAVIGATION_BIND_BOTTOM_NAVIGATION_ITEM_KEY = Symbol( "BOTTOM_NAVIGATION_BIND_BOTTOM_NAVIGATION_ITEM_KEY" ); function useBottomNavigationItems() { const { childProviders, length, bindChildren } = useChildren( BOTTOM_NAVIGATION_BIND_BOTTOM_NAVIGATION_ITEM_KEY ); return { length, bottomNavigationItems: childProviders, bindBottomNavigationItem: bindChildren }; } export { BOTTOM_NAVIGATION_BIND_BOTTOM_NAVIGATION_ITEM_KEY, useBottomNavigationItems };