Vue,you can run: npm install --save core-js/modules/es.array.push.js core-js/mo...
这个问题似乎是想要在Vue项目中安装core-js
模块,但是core-js
并不是直接通过npm
安装es.array.push.js
这样的文件的。core-js
是一个JavaScript库,它提供了对最新JavaScript功能的兼容性,包括提供所有ECMAScript(ES)规范的实现。
如果你想要安装core-js
并使用其中的es.array.push
模块,你应该运行以下命令:
npm install --save core-js
然后在你的代码中,你可以这样导入并使用push
方法:
import 'core-js/modules/es.array.push';
// 或者使用require
// require('core-js/modules/es.array.push');
const array = [];
array.push(1); // 使用push方法
如果你只是想要安装es.array.push
的polyfill,那么你可以只安装那个特定的模块:
npm install --save core-js/modules/es.array.push
然后在代码中直接使用Array.prototype.push
,core-js
会自动polyfill支持环境。
const array = [];
array.push(1); // 使用push方法
请注意,如果你的环境本身就支持Array.prototype.push
,那么core-js
不会做任何事情,不会添加额外的负担。
评论已关闭