我有使用jQuery和缩小的自定义JS插件的HTML主题。应用程序需要比最小化的自定义JS插件先加载jQuery。而且我也无法编辑缩小的自定义JS插件。
mounted() {
let jqueryJS = document.createElement('script');
jqueryJS.type = 'text/javascript';
jqueryJS.src = '/static/js/jquery.js';
jqueryJS.async = false;
document.body.appendChild(jqueryJS);
let pluginsJS = document.createElement('script');
pluginsJS.type = 'text/javascript';
pluginsJS.src = '/static/js/plugins.js';
pluginsJS.async = false;
document.body.appendChild(pluginsJS);
}
如果我运行应用程序,则jQuery不一定会在缩小的自定义JS插件之前加载。 如何先加载jQuery,然后加载最小的自定义JS插件?
答案 0 :(得分:1)
您可以使用vue-script2
<h2 edHeadTitle i18n class="headerTitle">Terms and conditions</h2>