Vuetify
Vuetify sublime extension
Details
Installs
- Total 37K
- Win 21K
- Mac 10K
- Linux 6K
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
WORK IN PROGRESS
vuetify-sublime
Vuetify Sublime Text extension
vuetify-sublime
is the official extension for Vuetifyjs when working in Sublime Text. It provides snippets and autocomplete functionality for Vuetifyjs.
Documentation
For all information about available snippets and autocompletion for Sublime Text click here
Installation
Package Control
- Open your Command Palette (Command + Shift + P)
- Search for “Vuetify” to get it from Package Control.
Usage
Autocompletion
Will provide autocomplete for every Vuetify component tag. Ex. typing <
in html
or template
of vue file will provide components list and when you hit tab
, it will expand just like snippet counteparts.
Snippet
You don't need usage example if you are familiar with concept of snippets or you looked up the documentation. But here is an example:
Let's suppose you want to insert Button componenet. For that you have to write full component.
<v-btn>buttonText<v-btn>
But in vuetify-sublime
only writing vBtn
will give you all options available for Button component.
Everything is in camel case and with 'v' prefix which is for Vuetifyjs.
If you want to insert a component with all of its props. Just write v{component-name}WithProps
. This will insert component with all of its props. For example : vBtnWithProps
, vAvatarWithProps
etc.
Templates
Every component in the Vuetify have additional code to write inside it. For example the v-btn-toggle
component have v-btn
inside it. Thats why vuetify-sublime
provides templates for them.
The syntax of template is pretty easy. v{component}Template
or v{component}Template{availableTemplate}
For example vBtnToggleTemplate
will give you following code.
<v-btn-toggle mandatory multiple v-model="value">
<v-btn flat>
<v-icon>icon</v-icon>
</v-btn>
<v-btn flat>
<v-icon>icon</v-icon>
</v-btn>
<v-btn flat>
<v-icon>icon</v-icon>
</v-btn>
<v-btn flat>
<v-icon>icon</v-icon>
</v-btn>
</v-btn-toggle>
and vBtnToggleTemplateTextIcon
will give you following code.
<v-btn-toggle multiple mandatory v-model="value">
<v-btn flat value="value">
<span>text</span>
<v-icon>icon</v-icon>
</v-btn>
<v-btn flat value="value">
<span>text</span>
<v-icon>icon</v-icon>
</v-btn>
<v-btn flat value="value">
<span>text</span>
<v-icon>icon</v-icon>
</v-btn>
<v-btn flat value="value">
<span>text</span>
<v-icon>icon</v-icon>
</v-btn>
</v-btn-toggle>
Changelog
Questions
If you have any questions, ideas or you want to discuss with me. Just raise a issue in vuetify-sublime
github repository.