When I execute a Format Document command on a Vue Component.vue file VSCode replace all single quoted string with double quoted string.
In my specific case
Try one of these solutions
"prettier.singleQuote": true.editorconfig file, add this line under the root [*] symbol quote_type = single.prettierrc file, add this line {
"singleQuote": true,
"vetur.format.defaultFormatterOptions": {
"prettier": {
"singleQuote": true
}
}
}