policeSecurity/superManagement/src/views/test.vue

18 lines
301 B
Vue

<template>
{{ url}}
<SingleImageFileUpload
v-model:value="url"
/>
</template>
<script setup lang="ts">
import SingleImageFileUpload from "@/components/upload/SingleImageFileUpload.vue";
import {ref} from "vue";
const url = ref<string>('')
</script>
<style scoped lang="scss">
</style>