Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any Plugin available for VueJs in Netbeans 8.2

Netbeans 8.x intellisense doesn't identify VueJS tags. Is there any Plugin available for VueJs syntax highlighting or autofill support in Netbeans 8.x? If not, are there any work arounds?

like image 556
Mahi M Avatar asked Dec 29 '16 16:12

Mahi M


2 Answers

.vue file is a kind of html file, you can add syntax highlighting in Netbeans :

  • Tools > Options > Miscellaneous > Files
  • Add a new file extension :

    • File Extension : vue
    • Associated File Type (MIME) : HTML Files (text/html)

Not perfect but it seems there is no plugin for this actually.

EDIT : Visual Studio Code has nice features for vuejs

like image 74
soju Avatar answered Sep 29 '22 01:09

soju


There is a plugin but it is still in developtment: https://github.com/Zwaen91/vuejs-netbeans. Some problems with the mixed mimetype text/vue+html. Created a ticket here: https://issues.apache.org/jira/browse/NETBEANS-88

like image 22
Chrizzly Avatar answered Sep 29 '22 01:09

Chrizzly