0
0

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開発環境

Posted at

Vue.jsの開発環境を構築する。

Vueのインストールと設定方法

1
公式サイトへアクセスする。
以下の公式サイトへアクセスする。
https://jp.vuejs.org/index.html

2
「はじめる」をクリックする。
スクリーンショット 2022-09-04 16.31.54.png

3
「インストール」をクリックする。
2.png

4
「開発バージョン」をクリックして、vue.jsをインストールする。
3.png

5
インストールしたvue.jsファイルをHTMLファイルと同じディレクトリに保存して、下記のように指定する。

<script src="vue.js"></script>

src=""の中はディレクトリに合わせて指定する。
例えば、testフォルダの中にファイルを置いた場合。

<script src="test/vue.js"></script>
0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?