Open seichris opened 5 years ago
I want In SentCard.vue I want to replace:
<div :class="['btn btn--narrow btn--reveal btn--subtle', {'btn--arrow-down': !expanded, 'btn--arrow-up': expanded}]" >{{(expanded) ? 'less info' : 'more info'}}</div> </div>
for
<div :class="['btn btn--narrow btn--reveal btn--subtle', {'btn--arrow-down': !expanded, 'btn--arrow-up': expanded}]" >{{(expanded) ? '{{ $t("m.lessInfo")}}' : '{{ $t("m.moreInfo")}}'}}</div> </div>
The bug Error compiling:
- invalid expression: missing ) after argument list in _s((expanded) ? '{{ $t("m.lessInfo"))+"' : '"+_s($t("m.moreInfo"))+"'}}" Raw expression: {{(expanded) ? '{{ $t("m.lessInfo")}}' : '{{ $t("m.moreInfo")}}'}}
I want In SentCard.vue I want to replace:
for
The bug Error compiling: