1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Vue CLIとは

Posted at

Vue CLIとは

Vue.jsでの開発を支援してくれる便利なツールのこと。例えば以下のようなことをしてくれる。
・プロジェクトサンプルの生成
・webpackなどのバンドル環境設定
・Vueifyや単一ファイルコンポーネントの環境設定
・変更の差分だけサーバを更新
ここで、CLIとはCommnad Line Interfaceの略で、コマンドラインを使って開発を行うためのツールのこと。

インストール

Vue CLIのインストールはnpmを使って以下で行うことができる。

npm install -g @vue/cli

また、プロジェクトの作成は以下で行う。

vue create <プロジェクト名>

上記コマンドを実行すると、様々な設定が行える。
Vue CLIは、プロジェクトを作成するとサンプルが入っているため以下のコマンドを実行してhttp://localhost:8080/にアクセスすると入っているサンプルが表示される。

cd <プロジェクト名>
npm run serve
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?