[Vuejs]-Set up Vue and @vue/cli

0๐Ÿ‘

โœ…

  1. Use command npm uninstall -g @vue/cli to revert globally installing @vue/cli.
  2. According to Vue documentation versions 4.x are compatible with node v10+ and the support of node 13 was dropped in vue v5.
  3. Use command npm install -g @vue/cli@4 to install vue version 4.x

Leave a comment