add put url file for oss interface

This commit is contained in:
RockYang
2024-07-23 18:36:26 +08:00
parent a0aee80c63
commit 2a0c657ca3
19 changed files with 476 additions and 77 deletions

View File

@@ -19,7 +19,7 @@
<script setup>
import {ref} from "vue";
import {ref, watch} from "vue";
const props = defineProps({
value : {
@@ -43,6 +43,9 @@ const props = defineProps({
default: 1024
}
});
watch(() => props.value, (newValue) => {
model.value = newValue
})
const model = ref(props.value)
const emits = defineEmits(['update:value']);
const onInput = (value) => {