LoginSignup
3
1

More than 5 years have passed since last update.

VSCode vue拡張子 htmlとして関連付ける

Posted at

他の人も書かれていると思いますが、デフォルト設定外の
拡張子(今回ではvue)を関連付ける方法をまとめました。
(毎回ググっているので、メモ代わりです)

20170622163552.png ⇒ 20170622163543.png

こうしたい

ファイル(F) ⇒ 基本設定(P) ⇒ 設定 をクリック。
20170622163008.png

そうするとsetting.jsonというファイルが勝手に作られます。
20170622163411.png

以下の様に修正する事で関連付けがされます。

{
    "files.associations": {
        "*.vue":"html"
    }
}
3
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
3
1