[Vuejs]-I'm getting an error when installing Vue.js 3 on Chrome OS

0👍

The error points to ??, which is the nullish coallescing operator. Support for that operator was added in Node 14, but you’re using Node 12 (based on your comment).

The solution is to upgrade your Node version to Node 14 or newer.

Leave a comment