mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
8 lines
243 B
TypeScript
8 lines
243 B
TypeScript
import { Page } from "tns-core-modules/ui/page";
|
|
|
|
import { ViewModel } from "~/listview/fragments/listview-fragment-view-model";
|
|
|
|
export function onLoaded(args) {
|
|
const page = <Page>args.object;
|
|
page.bindingContext = new ViewModel();
|
|
} |