[Vuejs]-Problem with vertical line in vs code indentation

0👍

Try adding this to your user settings.json or your workspace’s .vscode/settings.json file:

"[css]": {
    "editor.indentSize": 3,
    "editor.detectIndentation": false
}

Leave a comment