Nuxt Swiftsearch
为 Nuxt 3 量身定制的 algolia 即时搜索实现。
特性
- 🍀 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