Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/santiblanko/vue-instant
vue instant allows you to easily create custom search controls with auto suggestions for your vue 2 applications.
https://github.com/santiblanko/vue-instant
autocomplete instant javascript search vue
Last synced: 3 months ago
JSON representation
vue instant allows you to easily create custom search controls with auto suggestions for your vue 2 applications.
- Host: GitHub
- URL: https://github.com/santiblanko/vue-instant
- Owner: santiblanko
- License: mit
- Created: 2016-12-30T22:28:48.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-03-02T19:57:36.000Z (almost 2 years ago)
- Last Synced: 2024-04-26T21:47:41.862Z (10 months ago)
- Topics: autocomplete, instant, javascript, search, vue
- Language: Vue
- Homepage: https://jsfiddle.net/santiblanko/dqo6vr57
- Size: 3.5 MB
- Stars: 425
- Watchers: 6
- Forks: 65
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-vue - vue-instant - instant?style=social) - 轻松创建自动提示的自定义搜索控件 (UI组件)
- awesome-github-vue - vue-instant - 轻松创建自动提示的自定义搜索控件 (UI组件)
- awesome-github-vue - vue-instant - 轻松创建自动提示的自定义搜索控件 (UI组件)
- awesome - vue-instant - 轻松创建自动提示的自定义搜索控件 (UI组件)
README
# Vue Instant!
[![npm](https://img.shields.io/npm/v/vue-instant.svg) ![npm](https://img.shields.io/npm/dm/vue-instant.svg)](https://www.npmjs.com/package/vue-instant)
[![vue2](https://img.shields.io/badge/vue-2.x-brightgreen.svg)](https://vuejs.org/)vue instant allows you to easily create custom search controls with auto suggestions for your vue 2 applications.
[![header](http://g.recordit.co/Yeg0Bl0nJO.gif)](https://santiblanko.github.io/vue-instant/)
If this implementation looks great you can share a beer using [patreon](https://patreon.com/santiblanko?utm_medium=clipboard_copy&utm_source=copyLink&utm_campaign=creatorshare_creator) or send me bitcoins.
## Donations
Share a coffee if this project help you.
### Bitcoin direction:
31p39e3AtdEv8T2aU9y9D1XH9Wc5HEtRteI will be enormously grateful. :) Also I am available for courses and projects!!
Whatsapp :) +573233729549## Table of contents
- [Examples](#examples)
- [Installation](#installation)# Examples
Project page
https://santiblanko.github.io/vue-instant
Fiddle with all attributes and events
https://jsfiddle.net/santiblanko/dqo6vr57
If you need a example using webpack see the example folder.
# Installation
```
npm install --save vue-instant
```## Default import
If you need more details see the examples folder.Install all the components:
```javascript
import Vue from 'vue'
import 'vue-instant/dist/vue-instant.css'
import VueInstant from 'vue-instant'
Vue.use(VueInstant)
```
**⚠️ You need to configure your bundler to compile `.vue` files.** More info [in the official documentation](https://vuejs.org/v2/guide/single-file-components.html).## Browser
If you need more details see the examples folder.```html
```