Skip to content

Latest commit

 

History

History
54 lines (45 loc) · 1.13 KB

README.md

File metadata and controls

54 lines (45 loc) · 1.13 KB

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