HTML
|
vcomp |
Code snippet to scaffold a Single File Component (SFC) |
vscr |
Script tag for the Vue component |
vstyle |
Style tag with scope attribute for the Vue component |
vtemp |
Template tag with a div as root element for the Vue component |
vslot |
Slot tag with a name |
vfor |
v-for directive code |
vrl |
router-link element |
vrv |
router-view element |
|
|
JavaScript
|
vcomponent |
Code snippet to scaffold component script |
vmixin |
Code template for a Vue.js mixin to be included in a component mixins property |
vlch |
Vue component life-cycle hooks |
vindex |
index.js rollup/barrel file template |
vmodel |
ES6 class template |
vfilg |
Global filter declaration |
vfil |
Inline filter property of a component |
vdirg |
Global directive definition |
vdir |
Inline directives property of a component |
vdirgfn |
Global directive definition in shorthand function form |
vdata |
Data method of a component |
JavaScript [Release 1.0.1]
|
vprops |
Code snippet for props property |
vprop |
Code snippet for props property declaration |
vpropfull |
Code snippet for props property full declaration with validation |
vc |
Code snippet for computed property |
vcfull |
Code snippet for a computed property with getter and setter |
vw |
Code snippet for watch property |
vwm |
Code snippet for watch method |
vrf |
Render function for a functional component |
vmain |
Application initialization snippet - Vue CLI |
veventbus |
Code snippet for EventBus |
vstore |
Script implementing store pattern |
vautoreg |
Script for registering all components in /components/* globally with Vue. |
JavaScript [Release 1.0.2]
|
vr |
component's render function |
vcel |
createElement definition - short form |
vcelement |
createElement definition - full form |
vcelementdata |
Full definition of the data object parameter of createElement(.,/data/,.) |
vfcg |
Code snippet to create a global functional component with render function |
ve |
this.$emit(.,.) |
von |
Event handler using this.$on(.,.) |
vcmodel |
Model property of a component to override the behavior of v-model |
vclisteners |
Computed listeners property to override listeners on a component |
JavaScript [Release 1.0.5]
|
vri | Adds import for router |
vroutes | Define routes |
vrouter | Define router |
vru | Use router - app.Use(router) |
vrng | Router navigation guard |
vrngauth | Router navigation guard snippet verifying whether user is authenticated |
vrngauthasync | Router navigation guard snippet verifying whether user is authenticated using aysnc |
vra | Add a route to the routes symbol |
vran | Add a named route to the routes symbol |
vrac | Add a route to the routes symbol with nested children |
vrp | Navigate to route programmatically |
vrpo | Navigate to route programmatically using path |
vrpp | Navigate to route programmatically using params |
vrpq | Navigate to route programmatically using a query |
vrph | Navigate to route programmatically using a hash |
vrpget | Get route parameter inside a component |