How to add syntax highlighting for .Vue files in Eclipse

I just want to ask if you know how to add syntax highlighting for vue files using vue-loader. I am using Eclipse Neon

+5
source share
2 answers

vue is basically tags and javascript, so treating them as an HTML file will be fair enough. This can be set in eclipse for * .vue under HTML in the content type. enter image description here

+3
source

There is a plugin in the Marketplace, which may be what you are looking for. It was called CodeMix CI 1. I just installed it and in addition to adding syntax highlighting, it also performs code completion, which is very convenient.

0
source

Source: https://habr.com/ru/post/1268050/


All Articles