[Vuejs]-I run into problems when i add ".slice()" to the line of code

1👍

seems like you’re dealing with version problems of core-js package. You can look at package.json file and check "core-js" version. Let’s update core-js package via npm.

Try:

npm install core-js@3.6.5

or

npm install core-js@3

Leave a comment