mirror of
https://github.com/lainbo/component-party.git
synced 2026-04-05 13:09:03 +08:00
10 lines
244 B
TypeScript
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;
|
|
}
|