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
{{ message }}
This repository was archived by the owner on Jan 27, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -108,6 +108,18 @@ To include your Livewire component:
108
108
</body>
109
109
```
110
110
111
+
if you want to include a component from a dynamic variable you can use the `livewire:component` tag:
112
+
113
+
```html
114
+
<body>
115
+
<!-- If using Antlers -->
116
+
{{ livewire:component :name="variable" }}
117
+
118
+
<!-- If using Blade -->
119
+
<livewire:component name="$variable"/>
120
+
</body>
121
+
```
122
+
111
123
### @script and @assets
112
124
Antlers versions of [@script](https://livewire.laravel.com/docs/javascript#executing-scripts) and [@assets](https://livewire.laravel.com/docs/javascript#loading-assets) are provided:
0 commit comments