|
3 | 3 | **EXPERIMENTAL** This component is currently experimental and is
|
4 | 4 | likely to change, or even change drastically.
|
5 | 5 |
|
6 |
| -Live components work with the [TwigComponent](../TwigComponent) |
| 6 | +Live components work with the [TwigComponent](https://github.com/symfony/ux-twig-component) |
7 | 7 | library to give you the power to automatically update your
|
8 | 8 | Twig components on the frontend as the user interacts with them.
|
9 | 9 | Inspired by [Livewire](https://laravel-livewire.com/) and
|
@@ -62,6 +62,8 @@ class ProductSearchComponent implements LiveComponentInterface
|
62 | 62 | As a user types into the box, the component will automatically
|
63 | 63 | re-render and show the new results!
|
64 | 64 |
|
| 65 | +Want a demo? Check out https://github.com/weaverryan/live-demo. |
| 66 | + |
65 | 67 | ## Installation
|
66 | 68 |
|
67 | 69 | Let's get started! Install the library with:
|
@@ -94,7 +96,7 @@ That's it! We're ready!
|
94 | 96 |
|
95 | 97 | ## Making your Component "Live"
|
96 | 98 |
|
97 |
| -If you haven't already, check out the [Twig Component](../TwigComponent) |
| 99 | +If you haven't already, check out the [Twig Component](https://github.com/symfony/ux-twig-component) |
98 | 100 | documentation to get the basics of Twig components.
|
99 | 101 |
|
100 | 102 | Suppose you've already built a basic Twig component:
|
@@ -220,7 +222,7 @@ be set when rendering. Most properties will be LiveProps, with
|
220 | 222 | common exceptions being properties that hold services (these don't
|
221 | 223 | need to be stateful because they will be autowired each time before
|
222 | 224 | the component is rendered) and
|
223 |
| -[properties used for computed properties](../TwigComponent/README.md#computed-properties). |
| 225 | +[properties used for computed properties](https://github.com/symfony/ux-twig-component/blob/main/README.md#computed-properties). |
224 | 226 |
|
225 | 227 | ## data-action="live#update": Re-rendering on LiveProp Change
|
226 | 228 |
|
|
0 commit comments