mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00
7 lines
230 B
TypeScript
7 lines
230 B
TypeScript
import { BottomNavigationViewModel } from "./bottom-navigation-view-model";
|
|
|
|
export function bottomNavigaitonLoaded(args) {
|
|
const bottomNav = args.object.page;
|
|
bottomNav.bindingContext = new BottomNavigationViewModel();
|
|
}
|