wizardUpload 导向上传 
vue
<!--  -->
<script setup lang="ts">
// import { QlWizardUpload } from 'qin-lantern'
const value = ref([''])
</script>
<template>
  <div class="">
    <ql-config-provider
      :ql-upload="{
        action: 'https://finance.swtsk.com/oss/upload',
      }"
    >
      <QlWizardUpload v-model="value" />
    </ql-config-provider>
  </div>
</template>
<style scoped lang='scss'>
</style>API 
Attributes 
| 属性名 | 说明 | 类型 | 默认 | 
|---|---|---|---|
| v-model | 文件地址 | string[] | [''] | 
| action | 请求 URL | string | # | 
| headers | 设置上传的请求头部 | object | - | 
| type | 上传类型 | image | video | file | image | 
| max | 允许上传文件的最大数量 | number | - | 
| size | 允许上传的文件大小(MB) | number | - |