UNPKG

@nativescript-community/ui-material-bottomnavigationbar

Version:

Material Design Bottom Navigation bars allow movement between primary destinations in an app. Tapping on a bottom navigation icon takes you directly to the associated view or refreshes the currently active view.

12 lines 428 B
import { BottomNavigationBar, BottomNavigationTab } from '../bottomnavigationbar'; let installed = false; export default { install(Vue) { if (!installed) { installed = true; Vue.registerElement('MDBottomNavigationBar', () => BottomNavigationBar, {}); Vue.registerElement('MDBottomNavigationTab', () => BottomNavigationTab, {}); } } }; //# sourceMappingURL=index.js.map