Skip to content

快速开始

本节将介绍如何在项目中使用通用工具方法 📦 0.0.1

安装

sh
$ pnpm add @ovyvo/ra-utils@latest
sh
$ npm add @ovyvo/ra-utils@latest
sh
$ yarn add @ovyvo/ra-utils@latest

使用

vue
<script setup>
import { downFileFromBlob } from "@ovyvo/ra-utils"

const downloadFile = (url, fileName) => {
  downFileFromBlob(url, fileName)
}
</script>

Released under the MIT License.