Only output from Panel -> Output -> Vue Language Serve is
Vetur initialized
I have a vue.json user snippet with the following content:
{
"Print to console": {
"prefix": "conso",
"body": [
"console.log('DEBUG: value of ${1:varname}: ' + ${2|var,JSON.stringify(var)|})",
],
"description": "Log output to console"
}
}
It has been working with Vetur + VSCode 1.23.0 and prior, and only stopped working when I upgrade to VSCode 1.24.0
To be sure that the user snippet is actually working, this is what I did:
Vue https://github.com/LiuJi-Jim/vscode-vue.git

I also went ahead and
conso to debugVue extensionVue extensionVetur extensiondebug in a Vue source file, and it does not workI also have the following in my VSCode user settings:
"editor.snippetSuggestions": "top",
"editor.tabCompletion": true
I don't think that's ever supposed to work. In the <script> section only JavaScript snippets will be available. You should move that snippet to the JS snippet definition file.
Most helpful comment
I don't think that's ever supposed to work. In the
<script>section only JavaScript snippets will be available. You should move that snippet to the JS snippet definition file.