我正在使用 Noty 版本 3 https://github.com/needim/noty。根据文档,我应该使用 require 或 import。
import Noty from 'noty';
new Noty({
text: 'Notification text'
}).show();
// or
const Noty = require('noty');
new Noty({
text: 'Notification text'
}).show();
但没有一个有效。即使在 Chrome 的最新版本中。
当我使用要求时:
Uncaught ReferenceError: require is not defined
导入时:
Uncaught SyntaxError: Unexpected token import