2024-04-05 14:12:40 +08:00

27 lines
408 B
Vue

<script setup lang="ts">
import {
fetchPut,
} from '@/service'
const emit = defineEmits<{
update: [data: any] // 具名元组语法
}>()
async function put() {
const res = await fetchPut({ a: 112211, b: false })
emit('update', res)
}
</script>
<template>
<n-card title="Put" size="small">
<n-button @click="put">
click
</n-button>
</n-card>
</template>
<style scoped>
</style>