美文网首页
Visual Studio Code中使用Vue插件

Visual Studio Code中使用Vue插件

作者: 码农明明 | 来源:发表于2017-03-19 20:48 被阅读4460次

    一、安装插件

    在左侧有个安装插件的按钮,点击后即可通过关键词搜索来安装插件


    图片.png

    二、插件配置

    文件 =》首选项=》设置=》用户设置

    图片.png

    三、推荐插件

    vetur

    作用:代码提示,高亮

    配置:

    "emmet.syntaxProfiles": {
            "vue-html": "html",
            "vue": "html"
        }
    

    ESLint

    作用:代码错误检查

    配置:

     "eslint.validate": [
            "javascript",
            "javascriptreact",
            {
                "language": "html",
                "autoFix": true // HTML自动修复,
            },
            {
                "language": "vue",
                "autoFix": true // vue 自动修复
            }
        ],
        "eslint.autoFixOnSave": true // 文件保存时自动修复
    

    File Peek

    作用:路径跳转

    配置:

    "file_peek.activeLanguages": [
         "typescript",
         "javascript",
         "python",
         "vue"
    ],
    "file_peek.searchFileExtensions": [
         ".js",
         ".ts",
         ".html",
        ".css",
        ".scss",
        ".vue"
    ]
    

    Path Intellisense

    作用: 路径自动填充

    相关文章

      网友评论

          本文标题:Visual Studio Code中使用Vue插件

          本文链接:https://www.haomeiwen.com/subject/ymsvnttx.html