@getlupa/vue v0.14.9
Quickstart
This is a vue plugin for
For SSR support, see Plugin for Nuxt 3
For full configuration options see Main repository
Quick Setup
- Add
LupaSearch
dependency to your project
# Using pnpm
pnpm add -D @getlupa/nuxt @getlupa/vue
# Using yarn
yarn add --dev @getlupa/nuxt @getlupa/vue
# Using npm
npm install --save-dev @getlupa/nuxt @getlupa/vue
- Import desired plugins to your component:
<script setup lang="ts">
import { SearchBox, SearchBoxOptions, SearchResults, SearchResultsOptions } from '@getlupa/vue'
import '@getlupa/vue/dist/style.css'
const searchBoxOptions: SearchBoxOptions = {
// See main repository for full list of available options
}
const searchResultsOptions: SearchResultsOptions = {
// See main repository for full list of available options
}
</script>
<template>
<div class="box-wrapper">
<SearchBox :options="searchBoxOptions" />
</div>
<div class="result-wrapper">
<SearchResults :options="searchResultsOptions" />
</div>
</template>
See main repo for full configuration options examples.
Using Slots
<script lang="ts" setup>
import { SearchBox, SearchBoxOptions, SearchResults, SearchResultsOptions } from '@getlupa/vue'
import '@getlupa/vue/dist/style.css'
const searchBoxOptions: SearchBoxOptions = {
// See main repository for full list of available options
}
const searchResultsOptions: SearchResultsOptions = {
// See main repository for full list of available options
}
</script>
<template>
<div>
<div>
<LupaSearchBox :options="searchBoxOptions" />
</div>
<div style="margin-top: 25px">
<LupaSearchResults :options="searchResultsOptions">
<template #productCard="props">
<div :style="props.style">
<div style="margin-bottom: 25px">{{ props.product.name }}</div>
</div>
</template>
</LupaSearchResults>
</div>
</div>
</template>
Development
This template should help get you started developing with Vue 3 in Vite.
Recommended IDE Setup
VSCode + Volar (and disable Vetur) + TypeScript Vue Plugin (Volar).
Type Support for .vue
Imports in TS
TypeScript cannot handle type information for .vue
imports by default, so we replace the tsc
CLI with vue-tsc
for type checking. In editors, we need TypeScript Vue Plugin (Volar) to make the TypeScript language service aware of .vue
types.
If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a Take Over Mode that is more performant. You can enable it by the following steps:
- Disable the built-in TypeScript Extension
- Run
Extensions: Show Built-in Extensions
from VSCode's command palette - Find
TypeScript and JavaScript Language Features
, right click and selectDisable (Workspace)
- Run
- Reload the VSCode window by running
Developer: Reload Window
from the command palette.
Customize configuration
See Vite Configuration Reference.
Project Setup
yarn install
Compile and Hot-Reload for Development
yarn dev
Type-Check, Compile and Minify for Production
yarn build
Lint with ESLint
yarn lint
9 months ago
9 months ago
10 months ago
9 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
11 months ago
11 months ago
11 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
11 months ago
1 year ago
1 year ago
11 months ago
11 months ago
11 months ago
1 year ago
11 months ago
1 year ago
11 months ago
1 year ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago