What's Changed
Dynamic Components
Sometimes there is a need to include a component dynamically, for example, you are looping through some data and the type of component is defined within a variable.
html
<!--
form_fields = [
{'type': 'text'},
{'type': 'textarea'},
{'type': 'checkbox'}
]
-->
{% for field in form_fields %}
<c-component :is="field.type" />
{% endfor %}
You can also provide a template expression, should the component be inside a subdirectory or have a prefix:
html
{% for field in form_fields %}
<!-- subfolder -->
<c-component is="form-fields.{{ field.type }}" />
<!-- component prefix -->
<c-component is="field_{{ field.type }}" />
{% endfor %}
* Fixed auto-setup where no `builtins` key present by wrabit in https://github.com/wrabit/django-cotton/pull/92
* Dynamic components by wrabit in https://github.com/wrabit/django-cotton/pull/73
**Full Changelog**: https://github.com/wrabit/django-cotton/compare/v0.9.30...v0.9.32