web-atoms-core
Version:
17 lines (11 loc) • 359 B
text/typescript
import { BindableProperty } from "../../core/BindableProperty";
import { AtomControl } from "./AtomControl";
export class AtomPage extends AtomControl {
public title: string;
public tag: string;
public preCreate(): void {
this.bind(this.element, "title", [["viewModel", "title"]]);
}
}