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