An open API service indexing awesome lists of open source software.

https://github.com/postalservice14/vuejs-plugin

[DEPRECATED] Vue.js features for the Intellij Platform (WebStorm, RubyMine, Intellij, etc)
https://github.com/postalservice14/vuejs-plugin

Last synced: 2 days ago
JSON representation

[DEPRECATED] Vue.js features for the Intellij Platform (WebStorm, RubyMine, Intellij, etc)

Awesome Lists containing this project

README

          

# Deprecated
In favor of the [Vue.JS plugin](https://github.com/JetBrains/intellij-plugins/tree/master/vuejs) that comes with IntelliJ now

# Vue.js Support Plugin

Vue.js Support for the Intellij Platform (WebStorm, PhpStorm, Rubymine, Intellij, etc)

# Install
You can install it via Settings -> Plugins -> Browse repositories -> (search for) Vue.js

Or download it from here and install it manually:
https://plugins.jetbrains.com/plugin/8057?pr=phpStorm

# Useful tips
### Highlight and formating for SCSS/SASS/LESS styles in `.vue` files

To get proper formating you just have to insert `rel="stylesheet/` in the `` tag.
This is example for `scss`:
```HTML
<style lang="scss" rel="stylesheet/scss">
@import 'variables.sass';

body {
font: 100% Helvetica, sans-serif;
background-color: $light_blue;
}

```

# Contributing
This project is still a work in progress. I welcome ideas and additions. My goal is to make it have similar functionality and features as the [angularjs-plugin](https://github.com/JetBrains/intellij-plugins/tree/master/AngularJS).