Files
component-party/content/4-component-composition/1-props/aurelia2/app.ts
Brandon seydel fbf1f0b24b Add aurelia 2 (#164)
* add aurelia 2

* remove template from au2
2023-04-19 21:22:44 +02:00

10 lines
244 B
TypeScript

import { UserProfile } from "./user-profile";
export class App {
static dependencies = [UserProfile]; // static dependecies way or registered globablly
age = 20;
name = "John";
colors = ["green", "blue", "red"];
available = false;
}