1.5.5 • Published 6 months ago

@unicom-blockchain/file-preview v1.5.5

Weekly downloads
-
License
ISC
Repository
-
Last release
6 months ago

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>
1.5.5

6 months ago

1.5.4

6 months ago

1.5.3

6 months ago

1.5.2

6 months ago

1.5.1

6 months ago

1.5.0

7 months ago