0.2.2 • Published 4 years ago

vue-virtual-keyboard-ko v0.2.2

Weekly downloads
10
License
MIT
Repository
github
Last release
4 years ago

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
0.2.1

4 years ago

0.2.0

4 years ago

0.2.2

4 years ago

0.1.9

4 years ago

0.1.8

4 years ago

0.1.7

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago