如何在Vue中包含本地脚本文件

时间:2019-04-05 07:47:38

标签: vuejs2

我有一个VS代码的基础项目,并且是一个非常简单的任务。我想以正确的方式在项目中包含旧的javascript文件,以便将其加载到浏览器中。
该文件应位于src \ assets \ scripts \ oldLegacyScript.js

我尝试了这种攻击:How to add external JS scripts to VueJS Components,该代码在运行时会在文档中注入一个<source>标签。仅当我将.js文件放在生成的公共文件夹中时,这才起作用。如果该文件不在公用文件夹中,则浏览器将尝试下载index.html文件,我无法理解:

file not found enter image description here

如果我遵循以下解决方案:Importing javascript file for use within vue component,我在import语句中遇到语法错误: enter image description here

那么我该如何克服在Vue项目中导入简单javascript文件这一简单任务呢?

1 个答案:

答案 0 :(得分:2)

这样导入

<script>
import * as myKey from '.src/..';

export default {

}
</script>