2024-04-28 09:22:34 +08:00

33 lines
628 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script setup lang="ts">
import { useRequest } from 'alova'
import {
fetchGet,
} from '@/service'
const emit = defineEmits<{
update: [data: any] // 具名元组语法
}>()
const { data: fetchGetData, send: sendFetchGet } = useRequest(fetchGet({ a: 112211 }), {
// 当immediate为false时默认不发出
immediate: false,
})
async function handleRequestHook() {
await sendFetchGet()
emit('update', fetchGetData.value)
}
</script>
<template>
<n-card title="useRequest风格" size="small">
<n-button @click="handleRequestHook">
click
</n-button>
</n-card>
</template>
<style scoped>
</style>