Skip to content

Commit 51e0bda

Browse files
committed
docs: improved attribute-coercion.md
vuejs/docs@73ab929
1 parent 4f2b427 commit 51e0bda

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/guide/migration/attribute-coercion.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ badges:
3434

3535
| バインディング式 | `foo` <sup>通常の属性</sup> | `draggable` <sup>列挙された属性</sup> |
3636
| ------------------- | --------------------------- | ------------------------------------- |
37-
| `:attr="null"` | / | `draggable="false"` |
38-
| `:attr="undefined"` | / | / |
37+
| `:attr="null"` | - | `draggable="false"` |
38+
| `:attr="undefined"` | - | - |
3939
| `:attr="true"` | `foo="true"` | `draggable="true"` |
40-
| `:attr="false"` | / | `draggable="false"` |
40+
| `:attr="false"` | - | `draggable="false"` |
4141
| `:attr="0"` | `foo="0"` | `draggable="true"` |
4242
| `attr=""` | `foo=""` | `draggable="true"` |
4343
| `attr="foo"` | `foo="foo"` | `draggable="true"` |
@@ -60,8 +60,8 @@ badges:
6060

6161
| バインディング式 | `foo` <sup>通常の属性</sup> | `draggable` <sup>列挙された属性</sup> |
6262
| ------------------- | --------------------------- | ------------------------------------- |
63-
| `:attr="null"` | / | / <sup>*</sup> |
64-
| `:attr="undefined"` | / | / |
63+
| `:attr="null"` | - | - <sup>*</sup> |
64+
| `:attr="undefined"` | - | - |
6565
| `:attr="true"` | `foo="true"` | `draggable="true"` |
6666
| `:attr="false"` | `foo="false"` <sup>*</sup> | `draggable="false"` |
6767
| `:attr="0"` | `foo="0"` | `draggable="0"` <sup>*</sup> |

0 commit comments

Comments
 (0)