New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

v-download

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

v-download

Vue.js directive to download (and optionally transform) data

latest
Source
npmnpm
Version
1.2.1
Version published
Weekly downloads
127
-21.12%
Maintainers
1
Weekly downloads
 
Created
Source

v-download

Vue.js directive to download (and optionally transform) data

Install

For browser usage, import the component by adding a src tag in the header (): <script src="https://unpkg.com/v-download@1.2.0/dist/main.js">

For Node usage, install the v-download package using npm npm install --save v-download

Usage

First register the directive globally:

import DownloadData from 'v-download'

Vue.use(DownloadData)

Or locally:

import { downloadData } from 'v-download'

export default {
  directives: {
    downloadData
  }
}

Then use it in template:

<template>
  <button v-download-data="`some text`">Download!</button>
</template>

Data type

If type is provided it will be used as the mimetype:

<template>
  <button v-download-data="`{'example':'some text'}`" v-download-data:type="'json'">Download!</button>
</template>

If an object or array (instead of a string) is provided and the type is 'csv', 'tsv' or 'json', the object/array will be converted (json will be convert using JSON.stringify, csv/tsv is assuming an array and will be iterated)

<template>
  <button v-download-data="myObject" v-download-data:type="'json'">Download!</button>
</template>

File name

If filename is provided it will be used as the downloaded file name:

<template>
  <button v-download-data="`{'example':'some text'}`" v-download-data:filename="'mydownload.json'">Download!</button>
</template>

Keywords

Vue.js

FAQs

Package last updated on 05 Nov 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts