11
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?

Vue.jsのディレクトリ構成について

Posted at

ディレクトリ構成

image.png

node_modules

プロジェクトにインストールされたnpmパッケージが格納されるディレクトリ。

public

静的なファイルが入るディレクトリ。

src

ソースコードが入るメインのディレクトリ。

assets

画像やスタイルシートなどのリソースファイルを格納するディレクトリ。

components

再利用可能なUI部品(コンポーネント)を格納するためのディレクトリ。

router

シングルページアプリケーションでのルーティングを管理するディレクトリ。

views

ルートとなるVueコンポーネントを格納するディレクトリ。
通常、ページごとに1つのVueコンポーネントを持つ。

App.vue

Vueアプリのトップレベルコンポーネント。

main.js

Vue.jsの起動場所となるファイル。
このファイルにはVueインスタンスを作成し、ルーターやストア、アプリケーション全体の設定を行うコードが含まれている。

index.html

Vue.jsアプリケーションのエントリーポイントとなるファイル。
このファイルはブラウザに直接読み込まれ、Vue.jsアプリケーションのルートとなる要素を定義し、必要なスクリプトやスタイルシートを読み込む。

package-lock.json

npm install時のパッケージ情報(バージョン等)を保持するファイル

package.json

npmコマンドや依存するnpmモジュールを管理するファイル

11
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
11
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?