如何用vscode在html中写js
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用vscode在html中写js相关的知识,希望对你有一定的参考价值。
参考技术A 可以像正常编辑器一样使用,在页面内部使用js或者外部引入js文件。还可以复制一个视窗到旁边,同时修改html和js。
如何用VSCode调试Vue.js
VS Code相关插件:
Chinese (Simplified) Language Pack for Visual Studio Code
Chinese (Simplified) Language Pack for Visual Studio Code
Debugger for Chrome
ESLint
Vetur
一 安装:安装VS Code插件 Debugger for Chrome
二 配置:config下index.js
cacheBusting 由 true 改为 false
//cacheBusting: true,
cacheBusting:false,
//cacheBusting: true,
cacheBusting:false,
devtool 由 cheap-module-eval-source-map 改为 source-map
//devtool: ‘cheap-module-eval-source-map‘,
devtool: ‘source-map‘,
//devtool: ‘cheap-module-eval-source-map‘,
devtool: ‘source-map‘,
三 配置:launch.json 文件配置
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "vuejs: chrome",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}/src",
"breakOnLoad": true,
"sourceMapPathOverrides": {
"webpack:///src/*": "${webRoot}/*"
}
}
]
}
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "vuejs: chrome",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}/src",
"breakOnLoad": true,
"sourceMapPathOverrides": {
"webpack:///src/*": "${webRoot}/*"
}
}
]
}
四 启动调试
以上是关于如何用vscode在html中写js的主要内容,如果未能解决你的问题,请参考以下文章