解决报错'Vue' is not defined.
in 技术日志 with 0 comment and 6337 read

解决报错'Vue' is not defined.

in 技术日志 and 6338 read

最近在跟着CodingStart的Steven老师做一些前端的小例题,用的是(除了网络状况经常波动)非常好用的CodeSandbox工具。

遇见了一个问题:明明已经在HTML引用了Vue.js,但是我自己写的外部JS还是会提示:

'Vue' is not defined. (no-undef).   eslint

于是我脑子一抽,就直接联系了CodeSandbox的客服。为啥找客服?因为Google出来的结果没啥子用嘛。而且在CodePen、PlayCode等工具都不会报这个错,只有他家报错,那肯定是找他们最管用的。

果然管用。

在JS文件顶端加上一行注释就解决了。

/* global Vue */

NICE JOB.

Responses