Skip to content

Add vue-router, vue-async-data in extending.md #109

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 25, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion source/guide/extending.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ exports.install = function (Vue, options) {
### Using a Plugin

Assuming using a CommonJS build system:

``` js
var vueTouch = require('vue-touch')
// use the plugin globally
Expand All @@ -70,7 +69,9 @@ Vue.use(require('my-plugin'), {

## Existing Plugins & Tools

- [vue-router](https://github.com/vuejs/vue-router): The official router for Vue.js. Deeply integrated with Vue.js core to make building Single Page Applications a breeze.
- [vue-resource](https://github.com/vuejs/vue-resource): A plugin that provides services for making web requests and handle responses using a XMLHttpRequest or JSONP.
- [vue-async-data](https://github.com/vuejs/vue-async-data): Async data loading plugin.
- [vue-validator](https://github.com/vuejs/vue-validator): A plugin for form validations.
- [vue-devtools](https://github.com/vuejs/vue-devtools): A Chrome devtools extension for debugging Vue.js applications.
- [vue-touch](https://github.com/vuejs/vue-touch): Add touch-gesture directives using Hammer.js.
Expand Down