所有Vue命令返回"未知命令"

时间:2018-05-31 06:39:41

标签: ubuntu vue.js

在Ubuntu 18.04上使用Vue 2.9.4,所有命令都返回错误"未知命令"

compustretch@instance-1:~/vuetest$ vue init webpack testapp

  Unknown command init.

  vue-cli · Failed to download repo vuejs-templates/[object Object]: Response code 404 (Not Found)

compustretch@instance-1:~/vuetest$ vue list

  Unknown command list.

  Available official templates:

  ★  browserify - A full-featured Browserify + vueify setup with hot-reload, linting & unit testing.
  ★  browserify-simple - A simple Browserify + vueify setup for quick prototyping.
  ★  pwa - PWA template for vue-cli based on the webpack template
  ★  simple - The simplest possible Vue setup in a single HTML file
  ★  webpack - A full-featured Webpack + vue-loader setup with hot reload, linting, testing & css extraction.
  ★  webpack-simple - A simple Webpack + vue-loader setup for quick prototyping.

compustretch@instance-1:~/vuetest$ vue help init

  Unknown command help.

  vue-[object Object](1) does not exist, try --help

compustretch@instance-1:~/vuetest$ vue --version
2.9.4
compustretch@instance-1:~/vuetest$

希望有人知道为什么会发生这种情况,因为我一直在敲打这个,而搜索结果根本就没有。

2 个答案:

答案 0 :(得分:7)

您需要使用此命令data-bind

卸载

然后使用以下命令npm uninstall -g vue-cli安装v3(不确定为什么他们使用当前的2.9.4版本)

此外,他们还会要求您在

之后安装额外的内容,如init,list等

<强>更新

忘记npm install -g @vue/cli,因为它仍处于测试状态,当您使用其他库(如nuxt)时,它会给您带来很多问题。

我建议你试试这个命令npm install -g @vue/cli它会为你节省很多头条。

答案 1 :(得分:0)

我用这个解决方案解决了我的问题:

  1. 卸载以前的版本npm uninstall -g vue-cli
  2. 全局安装vue npm install -g @vue/cli-init