很多人習慣在 Chrome 的調試視窗中調試 Vue 程式碼, 或直接使用 console.log 來觀察變數值, 這是非常痛苦的一件事,需要同時開啟至少 3 個窗體。個人還是更習慣於斷點調試。這篇文章將介紹如何設定 Visual Studio Code 和 Chrome 來完成直接在 VS Code 斷點偵錯程式碼, 並且在VS Code的偵錯視窗看到Chrome中console相同的值。
設定Chrome 遠端偵錯連接埠
首先我們需要在遠端偵錯開啟的狀態下啟動Chrome, 這樣VS Code 才能attach 到Chrome 上:
Windows
右鍵點擊Chrome 的捷徑圖標,選擇屬性
在目標一欄,最後加上--remote-debugging-port=9222 注意要用空格隔開
macOS
開啟控制台執行:
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --remote-debugging-port=9222
#Linux
開啟控制台執行:
##google-chrome --remote-debugging-port=9222Visual Stuido Code 安裝外掛程式
{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "type": "chrome", "request": "attach", "name": "Attach to Chrome", "port": 9222, "webRoot": "${workspaceRoot}/src", "url": "http://localhost:8080/#/", "sourceMaps": true, "sourceMapPathOverrides": { "webpack:///src/*": "${webRoot}/*" } } ] }
修改webpack 的sourcemap
開始調試吧
Visual Studio Code對Node. js進行斷點偵錯使用詳解
以上是Visual Studio Code斷點偵錯Vue的方法分享的詳細內容。更多資訊請關注PHP中文網其他相關文章!