Nuxt Nation 大会即将到来。加入我们,时间为 11 月 12-13 日。

vue-query
@hebilicious/vue-query-nuxt

用于 @tanstack/vue-query 的 0 配置轻量级 Nuxt 模块。

⚗️ Vue Query Nuxt

CInpm versionnpm downloadsLicense: MIT

🚀 欢迎使用 Vue Query Nuxt

此 Nuxt 模块会自动安装和配置 Vue Query,以便在您的 Nuxt 应用程序中使用。它开箱即用,配置为 0,并且非常轻量级。

特性

  • 开箱即用,配置为 0
  • 提供所有配置选项
  • 自动导入 Vue Query 组合式函数

有关 Vue Query 的更多信息,请参阅 Vue Query 文档

📦 如何使用

1. 使用 npm、pnpm 或 yarn 安装依赖项。

# npm
npm i @hebilicious/vue-query-nuxt @tanstack/vue-query  
# pnpm
pnpm i @hebilicious/vue-query-nuxt @tanstack/vue-query  
# yarn
yarn add @hebilicious/vue-query-nuxt @tanstack/vue-query

2. 将模块添加到您的 Nuxt 模块中

nuxt.config.ts

export default defineNuxtConfig({
  modules: ["@hebilicious/vue-query-nuxt"]
})

3. 立即使用

在 Vue 组件中

<script setup lang="ts">
// Access QueryClient instance
const queryClient = useQueryClient()

// Query
const { isLoading, isError, data, error } = useQuery({
  queryKey: ['todos'],
  queryFn: () => $fetch("/api/todos"), // Use $fetch with your api routes to get typesafety 
})

// Mutation
const { mutate } = useMutation({
  mutationFn: (newTodo) => $fetch("/api/todos", { method: "POST", body: newTodo })
  onSuccess: () => {
    // Invalidate and refetch
    queryClient.invalidateQueries({ queryKey: ['todos'] })
  },
})

function onButtonClick() {
   mutate({
    id: Date.now(),
    title: 'Do Laundry',
  })
}
</script>

<template>
  <span v-if="isLoading">Loading...</span>
  <span v-else-if="isError">Error: {{ error.message }}</span>
  <!-- We can assume by this point that `isSuccess === true` -->
  <ul v-else>
    <li v-for="todo in data" :key="todo.id">{{ todo.title }}</li>
  </ul>
  <button @click="onButtonClick">Add Todo</button>
</template>

4. 高级配置

您可以在 nuxt.config.ts 文件的 vueQuery 键下指定选项。所有内容都已类型化。

nuxt.config.ts

export default defineNuxtConfig({
  modules: ["@hebilicious/vue-query-nuxt"],
  vueQuery: {
    // useState key used by nuxt for the vue query state.
    stateKey: "vue-query-nuxt", // default
    // If you only want to import some functions, specify them here.
    // You can pass false or an empty array to disable this feature.
    // default: ["useQuery", "useQueries", "useInfiniteQuery", "useMutation", "useIsFetching", "useIsMutating", "useQueryClient"]
    autoImports: ["useQuery"],
    // Pass the vue query client options here ...
    queryClientOptions: {
      defaultOptions: { queries: { staleTime: 5000 } } // default
    },
    // Pass the vue query plugin options here ....
    vueQueryPluginOptions: {}
  }
})

如果您需要修改安装 Vue Query 的插件,可以在项目的根目录下创建一个 vue-query.config.ts 文件。

vue-query.config.ts

import { library } from "@example/libray"

export default defineVueQueryPluginHook(({ queryClient, nuxt }) => {
  console.log(queryClient, nuxt) // You can access the queryClient here
  return {
    pluginReturn: { provide: { library, test: console } }, // nuxt plugin return value
    vueQueryPluginOptions: { queryClient } // You can pass dynamic options
  }
})

此钩子将在模块安装的 Nuxt 插件中运行,因此您可以使用它来 provide 某些内容或替换 Vue Query 选项。如果您需要在安装 queryClient 时运行自定义逻辑,这将非常有用。

📦 贡献

欢迎贡献、提出问题和功能请求!

  1. Fork 此仓库
  2. 安装 nodepnpm 使用 corepack enable && corepack prepare pnpm@latest --activate 来轻松安装 pnpm
  3. 在单一仓库根目录中使用 pnpm i
  4. 进行修改并遵循常规提交。
  5. 打开一个 PR 🚀🚀🚀