当我将对象从父组件传递给子组件时 - 它转换为字符串
<m-tank-add fuelTypes="{{this.fuelTypes}}" count="{{count}}"></m-tank-add>
@Input() fuelTypes: Array<FuelTypeModel>;
@Input() count: number;
count
作为"5"
和fuelTypes
作为"[object Object],[object Object],[object Object],[object Object],[object Object]"
如何传递参数,使它们不会被转换为字符串?