12

这样做:

import $ from 'jquery';

显示错误

The $ prefix is reserved, and cannot be used for variable and import names svelte(illegal-declaration)
4

2 回答 2

16

您可以只使用import as语法:

import * as $j from 'jquery';

或者anyName 你可以使用

于 2019-10-03T16:06:29.743 回答
10

我注意到,如果 JQuery 已经在全球范围内可用,那么您可以通过window.$而不是 just访问它,$并且 svelte 编译器不会抱怨。

于 2019-11-15T20:06:33.337 回答