mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-24 01:43:52 +08:00
7 lines
183 B
TypeScript
7 lines
183 B
TypeScript
import * as pages from "tns-core-modules/ui/page";
|
|
|
|
export function pageLoaded(args) {
|
|
var page = <pages.Page>args.object;
|
|
page.bindingContext = { author: "Pratchett" };
|
|
}
|