Vue文件代码显示不高亮问题
在百度上搜了好多 也试了不少 还重装了一次 但是重装之后还是不行
最终用底下的方法成功
把底下这段代码粘贴到 vscode的 setting.json 文件的后面中

"files.associations":{
        "*.vue": "html"
    }

粘贴后:

{
    "liveServer.settings.CustomBrowser": "chrome",
    "editor.tokenColorCustomizations": null,
    "files.associations":{
        "*.vue": "html"
    }
}

之后重新打开就可以了


版权声明:本文为kiing9819原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
原文链接:https://blog.csdn.net/kiing9819/article/details/119993854