fix: replace all occurrences of component_studly => vue_component

This commit is contained in:
Lance Edgar 2024-08-19 09:53:10 -05:00
parent b642c98d40
commit 1d56a4c0d0
28 changed files with 88 additions and 88 deletions

View file

@ -83,7 +83,7 @@
% if master.results_executable and master.has_perm('execute_multiple'):
<script type="text/javascript">
${execute_form.component_studly}.methods.submit = function() {
${execute_form.vue_component}.methods.submit = function() {
this.$refs.actualExecuteForm.submit()
}
@ -123,9 +123,9 @@
% if master.results_executable and master.has_perm('execute_multiple'):
<script type="text/javascript">
${execute_form.component_studly}.data = function() { return ${execute_form.component_studly}Data }
${execute_form.vue_component}.data = function() { return ${execute_form.vue_component}Data }
Vue.component('${execute_form.component}', ${execute_form.component_studly})
Vue.component('${execute_form.component}', ${execute_form.vue_component})
</script>
% endif