Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vue-async-computed

Package Overview
Dependencies
Maintainers
1
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-async-computed - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

2

package.json
{
"name": "vue-async-computed",
"version": "1.1.1",
"version": "1.1.2",
"description": "Async computed properties for Vue",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -48,2 +48,7 @@ <big><h1 align="center">vue-async-computed</h1></big>

return Vue.http.get('/get-username-by-id', { id: this.userId })
// Assuming the endpoint return JSON along the lines of
// {
// "username": "username-goes-here"
// }
.then(response => response.data.username)
}

@@ -64,2 +69,3 @@ }

return Vue.http.get('/get-username-by-id', { id: this.userId })
.then(response => response.data.username)
}

@@ -66,0 +72,0 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc