Vue.js – Using external scripts instead of imported scripts
I am trying to mitigate the Vue scripts that are imported and import them in the CSHTML page instead. Imagine, I have this in a Vue page: import { Line } from 'vue-chartjs' I want to import the script to be in the head of the CSHTML like this: <script src="URL/vue-chartjs"> Is there any way … Read more