Nuxt Swiftsearch
为 Nuxt 3 量身定制的 Algolia InstantSearch 实现。
特性
- 🍀 SSR 优先,按需客户端渲染,与任何其他 Nuxt 组件一样
- 🗼 集中式状态,您可以在应用程序的任何位置访问它
- 🌲 99% 兼容 vue-instantsearch 的当前实现
- 👮 类型化组件
快速设置
- 将
@atoms-studio/nuxt-swiftsearch
依赖项添加到您的项目中
npx nuxi@latest module add swiftsearch
- 将
@atoms-studio/nuxt-swiftsearch
添加到nuxt.config.ts
文件的modules
部分
export default defineNuxtConfig({
modules: ["@atoms-studio/nuxt-swiftsearch"],
});
就是这样!您现在可以在您的 Nuxt 应用中使用 Nuxt Swiftsearch ✨
开发
# Install dependencies
npm install
# Generate type stubs
npm run dev:prepare
# Develop with the playground
npm run dev
# Build the playground
npm run dev:build
# Run ESLint
npm run lint
# Run Vitest
npm run test
npm run test:watch
# Release new version
npm run release