在使用Vue Apollo的useQuery函数时,可以通过以下步骤返回结果:
import { useQuery } from '@vue/apollo-composable';
export default {
setup() {
const { result } = useQuery(query); // query为你定义的GraphQL查询语句
return {
result
};
}
}
<template>
<div>
<p v-if="result.loading">Loading...</p>
<p v-else-if="result.error">Error: {{ result.error.message }}</p>
<div v-else>
<p>Result: {{ result.data }}</p>
</div>
</div>
</template>
在上述模板中,我们根据result对象的loading属性和error属性来展示不同的内容。当loading为true时,显示"Loading...";当error存在时,显示错误信息;否则,显示查询结果。
需要注意的是,result对象还包含了其他属性,如refetch函数用于重新执行查询、fetchMore函数用于获取更多数据等。你可以根据具体需求来使用这些属性和方法。
关于Vue Apollo的更多详细信息和使用方法,你可以参考腾讯云的Apollo Client文档:Apollo Client - Vue Apollo。
领取专属 10元无门槛券
手把手带您无忧上云