// Place at the very beginning of your app entry point (before importing the Widget)import 'core-js'
方案 B:只导入你需要的(打包体积较小)
// Place at the very beginning of your app entry point (before importing the Widget)import 'core-js/actual/structured-clone'import 'core-js/actual/array/at'import 'core-js/actual/object/has-own'import 'core-js/actual/array/find-last'import 'core-js/actual/array/find-last-index'import 'core-js/actual/array/to-spliced'import 'core-js/actual/array/to-sorted'import 'core-js/actual/array/with'
Assistant
Responses are generated using AI and may contain mistakes.