mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
12 lines
301 B
TypeScript
12 lines
301 B
TypeScript
import * as vmModule from "./bottom-navigation-view-model";
|
|
|
|
var viewModel = vmModule.bottomNavigationViewModel;
|
|
|
|
export function bottomNavigaitonLoaded(args) {
|
|
let bottomNav = args.object;
|
|
bottomNav.bindingContext = viewModel;
|
|
}
|
|
|
|
export function addTabs(args) {
|
|
viewModel.createItems();
|
|
} |