2
3

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.

VSCodeでVue.jsの環境構築をしてみました

Posted at

はじめに

1ヶ月間ほどVue.jsを使い、
ポートフォリオとなるものを制作していました。
今まではVSCodeでVue.jsのCDNを使っていました。
この度,Vue.jsの開発環境を整えてみようと思い、
恐る恐るやってみました。

こちらを参考にしました。

Vue.js開発環境構築手順

手順1

まず
Node.jsがインストールされているか
確認をしました。
npm --versionでインストールされているか?の確認をします。
VSCodeのターミナルを開き、

npm -version
7.24.0

インストールの確認が取れました。

手順2

Vue CLIをインストールします。
npmコマンドでCLIをインストールします。

npm install -g @vue/cli

手順3

Vue cli-service-globalをインストールします。
Vueを動かすためのサーバです。

npm install -g @vue/cli-service-global

手順2、3は処理に少し時間がかかりましたが、待っていれば終わりました。
WARN deprecatedという文がどちらも何行か出てきました。

手順4

Visual Studio Codeの設定をします。

vue,ESLintをインストールしました。

手順5

ターミナルで

vue ui

ブラウザが自動で立ち上がります。
結構嬉しかったです。

2
3
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
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?