Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/madskristensen/VuePack
https://github.com/madskristensen/VuePack
Last synced: 18 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/madskristensen/VuePack
- Owner: madskristensen
- License: other
- Created: 2016-05-04T17:40:13.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-09-09T19:18:16.000Z (about 8 years ago)
- Last Synced: 2024-08-01T02:24:39.951Z (4 months ago)
- Language: C#
- Size: 469 KB
- Stars: 61
- Watchers: 8
- Forks: 7
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-vuejs - Visual Studio 2015 ★7
README
# Vue.js Pack
[![Build status](https://ci.appveyor.com/api/projects/status/y20hsx8sjiaijld5?svg=true)](https://ci.appveyor.com/project/madskristensen/vuepack)
Download this extension from the [VS Gallery](https://visualstudiogallery.msdn.microsoft.com/30fd019a-7b90-4f75-bb54-b8f49f18fbe1)
or get the [CI build](http://vsixgallery.com/extension/6ac8e91a-ade2-4e25-a8e1-a779dd6aeca3/).---------------------------------------
Contains HTML Intellisense and code snippets for the
[Vue.js](http://vuejs.org)
JavaScript librarySee the [changelog](CHANGELOG.md) for changes and roadmap.
## Features
- **.vue** files are mapped to open in the HTML editor
- HTML Intellisense for built-in directives
- HTML Intellisense for custom directives and components
- File icon for **.vue** files
- JavaScript snippets### Directives Intellisense
Built 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 directives
![HTML Intellisense](art/html-intellisense.png)#### Special elements
![HTML Intellisense partial](art/html-intellisense-partial.png)#### Custom components/elementDirectives
![HTML Intellisense components](art/html-intellisense-component.png)#### Custom directives
![HTML Intellisense directives](art/html-intellisense-directives.png)### File icon
Solution Explorer correctly displays a file icon for .vue
files.![File icon](art/file-icon.png)
### JavaScript snippets
A few handy snippets are available to speed up boilerplating
of vew models, filters and directives.#### vue (view model)
```javascript
var vm = new Vue({el: "#app"
})
```#### vued (directive)
```javascript
Vue.directive('my-directive', {bind: function () {
// content
},update: function (value) {
// content
},unbind: function () {
// content
}
})
```#### vuef (filter)
```javascript
Vue.filter('my-filter', function (value) {$end$
})
```Here's what it looks like in the Code Snippets Manager.
![Snippets](art/snippets.png)
## Contribute
Check out the [contribution guidelines](CONTRIBUTING.md)
if you want to contribute to this project.For cloning and building this project yourself, make sure
to install the
[Extensibility Tools 2015](https://visualstudiogallery.msdn.microsoft.com/ab39a092-1343-46e2-b0f1-6a3f91155aa6)
extension for Visual Studio which enables some features
used by this project.## License
[Apache 2.0](LICENSE)