这样做:
import $ from 'jquery';
显示错误
The $ prefix is reserved, and cannot be used for variable and import names svelte(illegal-declaration)
答案 0 :(得分:1)
您可以只使用import as
语法:
import * as $j from 'jquery';
或以anyName
的身份使用
答案 1 :(得分:0)
我注意到,如果JQuery已在全球范围内可用,那么您可以通过window.$
而不是$
来访问它,而且精巧的编译器也不会抱怨。