Code Monkey home page Code Monkey logo

vue-smart-suggest's Introduction

Vue Smart Suggest is a lightweight vue library offering dynamic, context-sensitive suggestions for your text areas. It can be fully customized with custom components and weights less than 3kb minified and gzipped.

Check out the documentation website to try it out ๐Ÿ˜Š

Like this project? Give a star ๐ŸŒŸ

Getting started

  1. Install using a package manager

    npm i --save vue-smart-suggest
    # or
    yarn add vue-smart-suggest
  2. Import SmartSuggest and define suggestion trigger(s)

    import { SmartSuggest, Trigger } from 'vue-smart-suggest';
    
    const userMentionTrigger: Trigger = {
        char: '@',
        items: [{ value: 'Joe' }, { value: 'Jane' }],
    };

    *minimal example, check Trigger type definition to see all options

  3. Enhance a text area with <SmartSuggest />

    <SmartSuggest :triggers="[userMentionTrigger]">
        <textarea />
    </SmartSuggest>
  4. That's it, your textarea will show up suggestions as you type @!

  5. Check-out the customization guide or the API to get the most of this library

Dependencies

  • This library requires vue 3.x.
  • This library has a single dependency, textarea-caret which helps finding the position of the cursor inside a text area.

Useful links

Documentation

Contributing

Having trouble? Found a bug? Want to contribute? Any kind of contribution is welcome. If you have any questions, please open an issue or create a pull request.

vue-smart-suggest's People

Contributors

7ph avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.