@unicom-blockchain/file-preview
TypeScript icon, indicating that this package has built-in type declarations

1.5.5 • Public • Published

FileExplorer

安装

pnpm i @unicom-blockchain/file-preview

使用

<template>
  <div>
    <FilePreview ref="previewRef"></FilePreview>
    <button @click="preview"></button>
  </div>
</template>
<script setup lang="ts">
import { FilePreview } from '@unicom-blockchain/file-preview';
import { ref } from 'vue';
const previewRef = ref<InstanceType<typeof FilePreview>>();
function preview() {
  if (previewRef.value) {
    previewRef.value.preview(
      {
        name: 'aaa.png',
        type: 'file',
        contentType: 'image/png',
      },
      new Blob(),
    );
  }
}
</script>
<style scoped></style>

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
1.5.561latest

Version History

VersionDownloads (Last 7 Days)Published
1.5.561
1.5.464
1.5.38
1.5.29
1.5.16
1.5.02

Package Sidebar

Install

npm i @unicom-blockchain/file-preview

Weekly Downloads

147

Version

1.5.5

License

ISC

Unpacked Size

16.7 MB

Total Files

34

Last publish

Collaborators

  • adou
  • aze275443207
  • neocn