Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@kuroski/v-eager

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kuroski/v-eager

A directive that emits input events despite the default keyboard on Android, GBoard, does composing by default

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
54
increased by107.69%
Maintainers
1
Weekly downloads
 
Created
Source

v-eager

Since the default keyboard on Android, GBoard, does composing by default, this directive will always emit the input event even if you are just autocompleting.

This is just a workaround, more information about this problem:

  • https://github.com/vuejs/vue/issues/9299
  • https://github.com/vuejs/vue/issues/9777

So let's hope this PR (https://github.com/vuejs/vue/pull/9814) will be merged sometime =/

Project setup

npm i -d @kuroski/v-eager
yarn add @kuroski/v-eager

Global

import VEager from '@kuroski/v-eager'
Vue.use(VEager)

Local

import {eager} from '@kuroski/v-eager'
export default {
  directives: {eager}
}

Usage

Just add the directive v-eager in the desired input:

<template>
<v-text-field
    id="name"
    name="name"
    v-model="name"
    v-eager
    label="Nome*"
    required
></v-text-field>
</template>

Keywords

FAQs

Package last updated on 26 Apr 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc