Home > Development Tools > VSCode > body text

vscode writes vue code without code prompts

王林
Release: 2019-12-14 13:33:43
Original
22953 people have browsed it

vscode writes vue code without code prompts

1. Install the plug-in

There is a button to install the plug-in on the left. After clicking it, you can install the plug-in through keyword search

vscode writes vue code without code prompts

2. Plug-in configuration

File=》Preferences=》Settings=》User Settings

vscode writes vue code without code prompts

3. Plug-in

vetur

Function: Code prompt, highlighting

Configuration:

"emmet.syntaxProfiles": {
        "vue-html": "html",
        "vue": "html"
    }
Copy after login

ESLint

Function: Code error checking

Configuration:

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

File Peek

Function: Path jump

Configuration:

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

Recommended related articles and tutorials: vscode tutorial

The above is the detailed content of vscode writes vue code without code prompts. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!