LoginSignup
0
1

More than 3 years have passed since last update.

Vue cli 環境構築

Last updated at Posted at 2019-08-16

Laravelでnpm installするのではなく、単独でSPAを作るときに使うときに便利そうです。

// これを入れる
npm install -g @vue/cli
npm install -g @vue/cli-service-global

// 設定を聞かれるがデフォルトでOK

// projectを作成する
vue create test_app

// serveで起動できる
cd test_app/
npm run serve

// コンパイルされてdistというディレクトリが作成されて、そこにコンパイルされたファイルが格納される
npm run build

// guiはこちら
vue ui

参考文献
Vue.js&Nuxt.js超入門
掌田津耶乃
出版社: 秀和システム (2019/02/05)

0
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
0
1