fix memoized event trigger order

This commit is contained in:
Lendemor 2024-12-11 00:08:47 +01:00
parent 4922f7ba05
commit 2d553c365c

View File

@ -5,11 +5,11 @@ export function {{tag_name}} () {
{{ hook }} {{ hook }}
{% endfor %} {% endfor %}
{% for hook in memo_trigger_hooks %} {% for hook in component._get_all_hooks() %}
{{ hook }} {{ hook }}
{% endfor %} {% endfor %}
{% for hook in component._get_all_hooks() %} {% for hook in memo_trigger_hooks %}
{{ hook }} {{ hook }}
{% endfor %} {% endfor %}