0
I am not 100% sure if this is the answer, but I have found a workaround.
I was importing javascript files such as ‘dashboard_axios.js’ which did not get loaded in as I wished it would. So instead, I renamed the file to ‘dashboard_axios.vue’ and added <template></template>
, and left it empty, and then wrapped my js code in <script></script>
then on the dashboard.vue I called the <dashboard_axios />
tag and it worked as I expected.
- [Vuejs]-How to display a datatable through an accordion
- [Vuejs]-How to integrate vuei18n in vuetify?
Source:stackexchange.com