rename vue_ entrypoints in webpack

This commit is contained in:
2021-07-12 13:21:51 +02:00
parent 8a859f7885
commit a9a59895b4
11 changed files with 23 additions and 22 deletions

View File

@@ -10,7 +10,7 @@
</div>
{% block stylesheets %}
<link href="{{ asset('build/address.css') }}" type="text/css" rel="stylesheet" />
{{ encore_entry_link_tags('vue_address') }}
{% endblock %}
{% block js %}
@@ -20,7 +20,7 @@
window.mode = 'edit';
window.vueRootComponent = 'app';
</script>
{{ encore_entry_script_tags('household_address') }}
{{ encore_entry_script_tags('vue_household_address') }}
{% endblock %}
{% endblock %}

View File

@@ -10,7 +10,7 @@
</div>
{% block stylesheets %}
<link href="{{ asset('build/address.css') }}" type="text/css" rel="stylesheet" />
{{ encore_entry_link_tags('vue_address') }}
{% endblock %}
{% block js %}
@@ -18,7 +18,7 @@
window.householdId = {{ household.id|e('js') }};
window.vueRootComponent = 'app';
</script>
{{ encore_entry_script_tags('household_address') }}
{{ encore_entry_script_tags('vue_household_address') }}
{% endblock %}
{% endblock %}

View File

@@ -17,9 +17,9 @@
window.household_members_editor_data = {{ data|json_encode|raw }};
window.household_members_editor_expand_suggestions = {{ expandSuggestions }};
</script>
{{ encore_entry_script_tags('household_members_editor') }}
{{ encore_entry_script_tags('vue_household_members_editor') }}
{% endblock %}
{% block css %}
{{ encore_entry_link_tags('household_members_editor') }}
{{ encore_entry_link_tags('vue_household_members_editor') }}
{% endblock %}