function fn() { this.test=function(string){ alert(string) } }; module.exports = fn;2、然后在main.js里引用并赋值
import demo from '../static/js/demo.js'; Vue.prototype.demo = demo;3、在组件里实例化并调用dmeo里的方法
mounted: function() { let demo = new this.demo(); demo.test("测试数据!") },