vue-async-computed
Advanced tools
Comparing version 1.0.3 to 1.0.4
{ | ||
"name": "vue-async-computed", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "Async computed properties for Vue", | ||
@@ -23,3 +23,2 @@ "main": "dist/index.js", | ||
"prepublish": "npm run build -s", | ||
"deploy": "git pull --rebase origin master && git push origin master", | ||
"patch": "npm version patch && npm publish", | ||
@@ -26,0 +25,0 @@ "minor": "npm version minor && npm publish", |
@@ -66,2 +66,3 @@ <big><h1 align="center">vue-async-computed</h1></big> | ||
} | ||
```` | ||
@@ -80,12 +81,13 @@ This is especily useful with ES7 async functions: | ||
}) | ||
```` | ||
## Install | ||
```sh | ||
````sh | ||
npm install --save vue-async-computed | ||
``` | ||
```` | ||
## Usage example | ||
```js | ||
````js | ||
import AsyncComputed from 'vue-async-computed' | ||
@@ -128,3 +130,3 @@ | ||
After that, vm.sum will be 5. If you change vm.x or vm.y, | ||
one second later vm.sum will automaticly update itself to be | ||
one second later vm.sum will automatically update itself to be | ||
the sum of what you set vm.x and vm.y to be a second before. | ||
@@ -131,0 +133,0 @@ */ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
150
8787