Skip to content

Commit 06f71ee

Browse files
authored
Merge branch 'master' into feature/added-default-keyset
2 parents 99fe2ee + a68c37e commit 06f71ee

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@ Virtual keyboard component for Vue.js v2.x. Designed to Raspberry Pi Touch Displ
1111
[![devDependency Status](https://david-dm.org/icebob/vue-touch-keyboard/dev-status.svg)](https://david-dm.org/icebob/vue-touch-keyboard#info=devDependencies)
1212
[![Downloads](https://img.shields.io/npm/dt/vue-touch-keyboard.svg)](https://www.npmjs.com/package/vue-touch-keyboard)
1313

14+
**If you like my work, please [donate](https://www.paypal.me/meregnorbert). Thank you!**
15+
1416
## Demo
1517
[JSFiddle demo](https://jsfiddle.net/icebob/88n7c1L8/)
18+
[Codepen demo](https://codepen.io/alvidr/pen/JBEmdR/)
1619

1720
[![Screenshot](https://cloud.githubusercontent.com/assets/306521/19721016/d56005bc-9b70-11e6-8568-39dc207bc466.png)]()
1821

@@ -40,7 +43,7 @@ https://github.com/icebob/vue-touch-keyboard/archive/master.zip
4043
<template>
4144
<div>
4245
<input type="text" placeholder="Text input" @focus="show" data-layout="normal" />
43-
<vue-touch-keyboard v-if="visible", :layout="layout", :cancel="hide", :accept="accept", :input="input" />
46+
<vue-touch-keyboard :options="options" v-if="visible" :layout="layout" :cancel="hide" :accept="accept" :input="input" />
4447
</div>
4548
</template>
4649

dev/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Vue from "vue";
22

33
(function() {
44

5-
let App = require("./App.vue");
5+
let App = require("./app.vue");
66

77
let app = new Vue({
88
el: "app",

0 commit comments

Comments
 (0)