如何改变角度分量的大小?

问题描述 投票:0回答:1

我解释一下:我在应用程序的其他几个父组件中使用了文件上传组件。 在某些情况下,我想改变该组件的大小 例如,当我将组件注入父级

AComponent
时,我希望我的组件有一个大小:

height: 50px;
width:100px;

如果我在父级中插入相同的组件

BComponent
,我希望大小为:

height: 200px;
width:400px;

感谢您的帮助

angular components
1个回答
0
投票

尝试使用A组件

<app-file-upload height="50px" width="100px"></app-file-upload>

B 组件

<app-file-upload height="200px" width="400px"></app-file-upload>

© www.soinside.com 2019 - 2024. All rights reserved.