npr
npr

Reputation: 4765

How to get vuetify style tags autocompletion in intellij

Im using vuetify and intellij editor - and cannot make autocomplete to work

I have added vuetify css and js like below

preferences > templates and languages > (added paths to vuetify css and js)

Upvotes: 3

Views: 7098

Answers (1)

lena
lena

Reputation: 93748

Vuetify components are supported since 2017.3.2 (see https://youtrack.jetbrains.com/issue/WEB-28318#comment=27-2578795) - just make sure that vuetify is installed in your project (npm i vuetify --save) and Vue.js plugin is installed and enabled.

enter image description here

See https://blog.jetbrains.com/webstorm/2018/01/working-with-vue-js-in-webstorm/ for more info.

Vuetify mixins and directives are not yet supported, please follow WEB-30070 for updates

Upvotes: 4

Related Questions