Uniapp Global JS Import Guide

In uni-app, it is possible to globally import local JS files, which can be done in the created or mounted lifecycle hooks of the App.vue file. For example:

<script>
export default {
  created() {
    const script = document.createElement('script');
    script.src = '@/static/localScript.js'; // 本地JS文件的路径
    document.body.appendChild(script);
  }
}
</script>

In the example above, we dynamically create a