Socket
Socket
Sign inDemoInstall

@vueuse/integrations

Package Overview
Dependencies
Maintainers
1
Versions
235
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vueuse/integrations - npm Package Compare versions

Comparing version 4.0.0-rc.2 to 4.0.0-rc.3

14

dist/index.cjs.js

@@ -17,2 +17,9 @@ 'use strict';

/**
* Wrapper for axios.
*
* @see {@link https://vueuse.js.org/useAxios}
* @param url
* @param config
*/
function useAxios(url, config) {

@@ -124,2 +131,9 @@ const response = vueDemi.ref(null);

/**
* Wrapper for qrcode.
*
* @see {@link https://vueuse.js.org/useQRCode}
* @param text
* @param options
*/
function useQRCode(text, options) {

@@ -126,0 +140,0 @@ const src = vueDemi.ref(text);

@@ -10,2 +10,9 @@ /// <reference types="node" />

/**
* Wrapper for axios.
*
* @see {@link https://vueuse.js.org/useAxios}
* @param url
* @param config
*/
declare function useAxios<T = any>(url: string, config?: AxiosRequestConfig): {

@@ -69,4 +76,11 @@ response: Ref<AxiosResponse<T> | undefined>;

/**
* Wrapper for qrcode.
*
* @see {@link https://vueuse.js.org/useQRCode}
* @param text
* @param options
*/
declare function useQRCode(text: MaybeRef<string>, options?: QRCode.QRCodeToDataURLOptions): Ref$1<string>;
export { createCookies, useAxios, useCookies, useQRCode };

@@ -7,2 +7,9 @@ import { ref, watch } from 'vue-demi';

/**
* Wrapper for axios.
*
* @see {@link https://vueuse.js.org/useAxios}
* @param url
* @param config
*/
function useAxios(url, config) {

@@ -114,2 +121,9 @@ const response = ref(null);

/**
* Wrapper for qrcode.
*
* @see {@link https://vueuse.js.org/useQRCode}
* @param text
* @param options
*/
function useQRCode(text, options) {

@@ -116,0 +130,0 @@ const src = ref(text);

@@ -13,2 +13,9 @@ (function (global, factory) {

/**
* Wrapper for axios.
*
* @see {@link https://vueuse.js.org/useAxios}
* @param url
* @param config
*/
function useAxios(url, config) {

@@ -120,2 +127,9 @@ const response = vueDemi.ref(null);

/**
* Wrapper for qrcode.
*
* @see {@link https://vueuse.js.org/useQRCode}
* @param text
* @param options
*/
function useQRCode(text, options) {

@@ -122,0 +136,0 @@ const src = vueDemi.ref(text);

4

package.json
{
"name": "@vueuse/integrations",
"description": "Integration wrappers for utility libraries",
"version": "4.0.0-rc.2",
"version": "4.0.0-rc.3",
"main": "dist/index.cjs.js",

@@ -30,3 +30,3 @@ "types": "dist/index.d.ts",

"dependencies": {
"@vueuse/shared": "4.0.0-rc.2",
"@vueuse/shared": "4.0.0-rc.3",
"vue-demi": "latest"

@@ -33,0 +33,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