qWici / vue-lang-code-flags

Vue component which shows the flag of the country from which the language comes from

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

"squared" property type is not correctly evaluated

vilherda opened this issue · comments

Following the explanations of "README.md":

<lang-flag iso="ca" squared=false title="a title..." />

I rececived this message on console:

[Vue warn]: Invalid prop: type check failed for prop "squared". Expected Boolean, got String with value "false".

@vilherda fixed. Must be:
<lang-flag iso="ca" :squared="false" title="a title..." />

Perfect! It works! Thanks a lot.