uni-app使用外部js

引用jquery

npm install jquery
import $ from 'jquery'

引用外部js

var script = document.createElement('script');
  script.src = "js地址";
  document.body.appendChild(script);

你可能感兴趣的:(uni-app使用外部js)