Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sherpic/vue-async-data
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 94c4fc0
Choose a base ref
...
head repository: vuejs/vue-async-data
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ce46995
Choose a head ref
  • 5 commits
  • 3 files changed
  • 4 contributors

Commits on May 20, 2016

  1. fixed example error (vuejs#18)

    miccycn authored and yyx990803 committed May 20, 2016
    Copy the full SHA
    3250680 View commit details

Commits on Jun 6, 2016

  1. Add License (vuejs#19)

    * add LICENSE file
    
    * add license section
    kazupon authored and yyx990803 committed Jun 6, 2016
    Copy the full SHA
    d0d0a67 View commit details

Commits on Sep 29, 2016

  1. Update README.md

    yyx990803 authored Sep 29, 2016
    Copy the full SHA
    fcf8d21 View commit details
  2. Update README.md

    yyx990803 authored Sep 29, 2016
    Copy the full SHA
    26c7844 View commit details

Commits on Dec 25, 2018

  1. Update README.md

    LinusBorg authored Dec 25, 2018
    Copy the full SHA
    ce46995 View commit details
Showing with 35 additions and 4 deletions.
  1. +21 −0 LICENSE
  2. +12 −2 README.md
  3. +2 −2 example/example.html
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2015-2016 Evan You

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
# vue-async-data
# THIS REPOSITORY IS DEPRECATED

## vue-async-data

> Async data loading plugin for Vue.js
**NOTE:** you don't need this if you are using [vue-router](https://github.com/vuejs/vue-router). Use vue-router's [`route.data` hook](http://router.vuejs.org/en/pipeline/data.html) instead.
**NOTE:**

- Does not work with Vue 2.0.

- You don't need this if you are using [vue-router](https://github.com/vuejs/vue-router). Use vue-router's [`route.data` hook](http://router.vuejs.org/en/pipeline/data.html) instead.

### Install

@@ -112,3 +118,7 @@ Or, if you prefer to wait until data loaded to display the component, you can us
``` html
<example wait-for="async-data"></example>
```

### License

[MIT](http://opensource.org/licenses/MIT)
4 changes: 2 additions & 2 deletions example/example.html
Original file line number Diff line number Diff line change
@@ -6,8 +6,8 @@
</head>
<body>
<div id="el">
<button v-on="click:reload">reload data</button>
<test msg-id="{{msgId}}"></test>
<button v-on:click="reload">reload data</button>
<test :msg-id="msgId"></test>
</div>
<script src="example.build.js"></script>
</body>