Nuxt js:如何从组件中的插件调用JavaScript函数

时间:2019-04-18 08:36:53

标签: nuxt.js

我使用外部资源,我想知道如何在组件中调用函数

来自

plugins: [ { src: '~plugins/custom.js', ssr: false } ]

致电

methods: { myfunction() { myJavascriptFunctionIntoCustomJS() }

文件custom.js

(function ($) {

'use strict';

 function myJavascriptFunctionIntoCustomJS(){ ... }
 function myOtherJavascriptFunctionIntoCustomJS(){ ... }

})

0 个答案:

没有答案