MCPcopy Index your code
hub / github.com/Hebilicious/vue-query-nuxt

github.com/Hebilicious/vue-query-nuxt @v0.3.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release v0.3.0 ↗ · + Follow
9 symbols 39 edges 26 files 0 documented · 0% updated 2d agov0.3.0 · 2023-12-19★ 1109 open issues
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

⚗️ Vue Query Nuxt

CI npm version npm downloads License: MIT

🚀 Welcome to Vue Query Nuxt!

This Nuxt Module automatically installs and configure Vue Query for your Nuxt application. It has 0 config out-of-the box and extremely lightweight.

Features

  • 0 config out-of-the box
  • All configurations options available
  • Auto Imports for Vue Query composables

Refer to the Vue Query documentation for more information about Vue Query.

📦 How to use

1. Use npm, pnpm or yarn to install the dependencies.

# 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. Add the modules to your Nuxt modules

In nuxt.config.ts :

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

3. Use right away

In a vue component :

<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>

  <ul v-else>
    <li v-for="todo in data" :key="todo.id">{{ todo.title }}</li>
  </ul>
  <button @click="onButtonClick">Add Todo</button>
</template>

4. Advanced configuration

You can specify the options under the vueQuery key in your nuxt.config.ts file. Everything is typed.

In 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: {}
  }
})

If you need to modify the plugin that installs vue query, you can create a vue-query.config.ts file at the root of your project.

In 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
  }
})

This hook will be run within the nuxt plugin installed by the module, so you can use it to provide something or replace the vue query options. This can be useful if you need to run custom logic when the queryClient is being installed.

📦 Contributing

Contributions, issues and feature requests are welcome!

  1. Fork this repo

  2. Install node and pnpm Use corepack enable && corepack prepare pnpm@latest --activate to install pnpm easily

  3. Use pnpm i at the mono-repo root.

  4. Make modifications and follow conventional commits.

  5. Open a PR 🚀🚀🚀

Extension points exported contracts — how you extend this code

PublicRuntimeConfig (Interface)
(no doc)
packages/vue-query-nuxt/src/nuxt-types.d.ts
ModuleOptions (Interface)
(no doc)
packages/vue-query-nuxt/src/runtime/utils.ts
PluginHookParameters (Interface)
(no doc)
packages/vue-query-nuxt/src/runtime/types.ts
PluginHookReturn (Interface)
(no doc)
packages/vue-query-nuxt/src/runtime/types.ts

Core symbols most depended-on inside this repo

defineVueQueryPluginHook
called by 2
packages/vue-query-nuxt/src/runtime/composables/defineVueQueryPluginHook.ts
setup
called by 1
packages/vue-query-nuxt/src/module.ts
getVueQueryOptions
called by 1
packages/vue-query-nuxt/src/runtime/utils.ts
pluginHook
called by 1
packages/vue-query-nuxt/src/runtime/virtual:pluginHook.ts
useConfig
called by 0
playgrounds/wagmi/composables/useConfig.ts

Shape

Function 5
Interface 4

Languages

TypeScript100%

Modules by API surface

packages/vue-query-nuxt/src/runtime/utils.ts2 symbols
packages/vue-query-nuxt/src/runtime/types.ts2 symbols
playgrounds/wagmi/composables/useConfig.ts1 symbols
packages/vue-query-nuxt/src/runtime/virtual:pluginHook.ts1 symbols
packages/vue-query-nuxt/src/runtime/composables/defineVueQueryPluginHook.ts1 symbols
packages/vue-query-nuxt/src/nuxt-types.d.ts1 symbols
packages/vue-query-nuxt/src/module.ts1 symbols

For agents

$ claude mcp add vue-query-nuxt \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page