You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Used for [dynamic components](../guide/components.html#Dynamic-Components) and to work around [limitations ofin-DOM templates](../guide/components.html#DOM-Template-Parsing-Caveats).
1966
+
1967
+
For example:
1968
+
1969
+
``` html
1970
+
<!-- component changes when currentView changes -->
1971
+
<component v-bind:is="currentView"></component>
1972
+
1973
+
<!-- necessary because <my-row> would be invalid inside -->
1974
+
<!-- a <table> element and so would be hoisted out -->
1975
+
<table>
1976
+
<tr is="my-row"></tr>
1977
+
</table>
1978
+
```
1979
+
1980
+
For detailed usage, follow the links in the description above.
0 commit comments