1.0.5 • Published 1 year ago

js-filedownload-zk v1.0.5

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

js-filedownload-zk

vue 文件下载

Install via NPM/Yarn

npm install js-filedownload-zk
yarn add js-filedownload-zk

Example - basic

<template>
  <file-upload :downloadConfig="downloadConfig"></file-upload>
</template>

<script>
import fileUpload from 'js-filedownload-zk'

export default {
    components: {
        fileUpload
    },
    data() {
        return {
            downloadConfig: {
                btnTxt: '文件下载', // 按钮文案
                url: 'http://zk-web-object.oss-cn-qingdao.aliyuncs.com/deal/front/success.png', // 要下载文件的url
                filename: '测试文件', // 下载的文件名
                style: {
                    height: '30px', // 按钮高度
                    color: '#fff', // 按钮文案颜色
                    size: '12px', // 按钮文案字体大小
                    bgcolor: '#EF1F1F' // 按钮背景色
                }
            }
        }
    }
}
</script>

示例

image

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago