Vue 筆記 - 如何使用 props 傳入 multipule value
Props 的傳遞
在Vue當中Props的傳遞是家常便飯,例如以下的資料若要傳遞至Child component時:
const age: number = 134;
const year number = 2153;
const today: Date = new Date();
需要在Parent component及Child component中如此地寫道:
// Parent component
...
...
// Child component
{{ age