Skip to content

有个布尔类型的组件属性modelValue,当给这个属性传递空字符串”“的时候,组件接收的值是true,我跟踪代码发现了这个地方,请问可以给解答一下这里为什么要转换成true吗?谢谢 #13129

Discussion options

You must be logged in to vote

Boolean props aim to behave like boolean attributes in HTML.

So, for example, the checked attribute of a native checkbox can be set in various ways:

<input type="checkbox" checked>
<input type="checkbox" checked="">
<input type="checkbox" checked="checked">

Vue handles boolean component props the same way. Imagine we have the prop checked: Boolean, then:

<MyCheckbox checked />
<MyCheckbox checked="" />
<MyCheckbox checked="checked" />

All of these will lead to the checked prop being set to true. The first two will both lead to checked being an empty string.

If you have a prop that can be either a string or a boolean then the order matters. For example, checked: [String, Boolean] would not…

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
1 reply
@slow123top
Comment options

Answer selected by slow123top
Comment options

You must be logged in to vote
1 reply
@slow123top
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
3 participants