Skip to content

图片上传

向军大叔每晚八点在 抖音bilibli 直播

xj-small

图片上传使用 src/components/hd/uploadSingleImage.vue 组件。

9月1日 (1)(1)

使用 composables/useUpload.ts 文件向后台发送请求,你需要根据你的后台业务进行定义,并要求后台返回的数据结构如下

{
	url: "/images/xj.jpg"
}

页面组件中使用代码如下

<script setup lang="ts">
import SingleImage from '@/components/upload/singleImage.vue'
const file = ref('')
</script>

<template>
  <SingleImage v-model="file" />
</template>