Skip to content

Commit 1ff3f8e

Browse files
Added falsy values mdn docs link (#1692)
1 parent ed15d29 commit 1ff3f8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/essentials/template-syntax.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Attributes that start with `:` may look a bit different from normal HTML, but it
7474
<button :disabled="isButtonDisabled">Button</button>
7575
```
7676

77-
The `disabled` attribute will be included if `isButtonDisabled` has a [truthy value](https://developer.mozilla.org/en-US/docs/Glossary/Truthy). It will also be included if the value is an empty string, maintaining consistency with `<button disabled="">`. For other falsy values the attribute will be omitted.
77+
The `disabled` attribute will be included if `isButtonDisabled` has a [truthy value](https://developer.mozilla.org/en-US/docs/Glossary/Truthy). It will also be included if the value is an empty string, maintaining consistency with `<button disabled="">`. For other [falsy values](https://developer.mozilla.org/en-US/docs/Glossary/Falsy) the attribute will be omitted.
7878

7979
### Dynamically Binding Multiple Attributes
8080

0 commit comments

Comments
 (0)