首页 > 其他分享 >Vue组件template中html代码自动补齐设置

Vue组件template中html代码自动补齐设置

时间:2022-10-23 13:33:14浏览次数:87  
标签:Vue 补全 html template true emmet

1、vscode设置==>扩展==>JSON==>在settings.json中编辑

2、在最后 } 前添加如下代码保存文件即可

// 自动补全模板字符串
    "emmet.triggerExpansionOnTab": true,
    "emmet.showAbbreviationSuggestions": true,
    "emmet.showExpandedAbbreviation": "always",
    "emmet.includeLanguages": {
        "javascript": "html"
    }

 3、使用方法:在输入标签名后按Tab键,即可补全。

 
 

 

标签:Vue,补全,html,template,true,emmet
From: https://www.cnblogs.com/niuyj/p/16818434.html

相关文章