vue-virtual-keyboard-ko

0.2.2 • Public • Published

vue-virtual-keyboard-ko

This is a simple Hangul virtual keyboard.

image

Install

$ npm i --save vue-virtual-keyboard-ko

Usage

<template>
  <div id="app">
    {{ value }}
    <VirtualKeyboard 
      v-on:getKeyValue="_getKeyValue"
      theme="white-shadow"
    />
  </div>
</template>
 
<script>
import { VirtualKeyboard } from 'vue-virtual-keyboard-ko'
 
export default {
  name: 'app',
  components: {
    VirtualKeyboard
  },
  data () {
    return {
      value: ''
    }
  },
  methods: {
    _getKeyValue (value) {
      this.value = value
    }
  }
}
</script>

Currently only prop returning a value, but the theme change special key addition will be updated later.

Theme

v.0.2.0 Add theme

  • white white
  • white-shadow white-shadow

Package Sidebar

Install

npm i vue-virtual-keyboard-ko

Weekly Downloads

4

Version

0.2.2

License

MIT

Unpacked Size

1 MB

Total Files

28

Last publish

Collaborators

  • kangyongsuek