When I execute a Format Document command on a Vue Component.vue file VSCode replace all single quoted string with double quoted string.
Format Document
In my specific case
I had the same issue in vscode. Just create a .prettierrc file in your root directory and add the following json. For single quotes add:
{ "singleQuote": true }
For double quotes add:
{ "singleQuote": false }