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.
- [Vuejs]-Vue3 composition API accordion menu, problem with showing data
- [Vuejs]-Vuejs prop does not get updated
Source:stackexchange.com