Contains HTML Intellisense and code snippets for the Vue.js JavaScript library See the changelog for changes and roadmap. Features
Directives IntellisenseBuilt in directives are shown in Intellisense to make it easier to write an to avoid typos. Any directive or component defined in any .vue or .js file in the project will be show up in Intellisense. Built in directivesSpecial elementsCustom components/elementDirectivesCustom directivesFile iconSolution Explorer correctly displays a file icon for .vue files. JavaScript snippetsA few handy snippets are available to speed up boilerplating of vew models, filters and directives. vue (view model)var vm = new Vue({ el: "#app"}) vued (directive)Vue.directive('my-directive', { bind: function () { // content }, update: function (value) { // content }, unbind: function () { // content }}) vuef (filter)Vue.filter('my-filter', function (value) { $end$}) Here's what it looks like in the Code Snippets Manager. ContributeCheck out the contribution guidelines if you want to contribute to this project. For cloning and building this project yourself, make sure to install the Extensibility Tools 2015 extension for Visual Studio which enables some features used by this project. License |