有人能指出我正确隐藏金元素铁图标的正确方向吗? (gold-cc-cvc-input)
我已经尝试了以下内容并且它没有工作:
<gold-cc-cvc-input style="iron-icon: display:none;" card-type="" name="cvc" id="cvcInput" auto-validate required ></gold-cc-cvc-input>
答案 0 :(得分:1)
有一个--gold-cc-cvc-input-icon
mixin for the icon,但尚未发布。解决方法是强制设置图标的样式。图标ID为icon
和amexIcon
,因此您可以执行以下操作:
<gold-cc-cvc-input id="cvc"></gold-cc-cvc-input>
// <script>
attached: function() {
this.$.cvc.$.icon.style.display = 'none';
this.$.cvc.$.amexIcon.style.display = 'none';
}