我使用nativescript-vue。 可以帮我。 按钮属性: backgroundSize , backgroudRepeat , backgroundSize 不起作用
<Button
backgroundRepeat="no-repeat"
backgroundSize="contain"
backgroundPosition="center"
/>
但是,如果您通过class或style属性设置它们,那么它将起作用。
谢谢
答案 0 :(得分:1)
backgroundSize,backgroudRepeat和backgroundSize是不是按钮属性。如果您检查Button类,则只有background,backgroundColor和backgroundImage可用作属性。
您只能使用CSS进行设置。