成语大全网 - 汉语词典 - vue怎么导入自己写的js文件?

vue怎么导入自己写的js文件?

1. 首先我们要改变我们要映入的外部js文件,改成以下这个格式。

代码:<pre class="html">function realconsole(){ alert("hello.thanks use me"); } export { realconsole } </pre>

2. 到我们的寄主那里,我们需要导入仿造的文件,方法是这样的:

代码:<pre class="html">&lt;template&gt; &lt;div class="teslist"&gt; &lt;button @click="methods1"&gt;显示console&lt;/button&gt; &lt;/div&gt; &lt;/template&gt; &lt;script src="../../lib/myconsole.js"&gt;&lt;/script&gt; &lt;script&gt; import { realconsole } from '../../lib/myconsole.js' export default { methods:{methods1:function(){ realconsole(); } }} &lt;/script&gt; &lt;style&gt; .teslist { } &lt;/style&gt;</pre>

注意红色叉的部分,那是我们es5的写法,绿色才是正确的,下面是效果图