我使用外部资源,我想知道如何在组件中调用函数
来自
plugins: [ { src: '~plugins/custom.js', ssr: false } ]
致电
methods: { myfunction() { myJavascriptFunctionIntoCustomJS() }
文件custom.js :
(function ($) {
'use strict';
function myJavascriptFunctionIntoCustomJS(){ ... }
function myOtherJavascriptFunctionIntoCustomJS(){ ... }
})