├── .prettierignore ├── examples ├── main.js ├── index.html └── app.vue ├── babel.config.js ├── docs ├── index.html ├── main.8f9cfd85.css └── main.77d36614.js ├── .gitignore ├── rollup.config.js ├── .github └── ISSUE_TEMPLATE │ ├── feature_request.md │ └── bug_report.md ├── LICENSE ├── package.json ├── README.md └── src └── keyboard-over.vue /.prettierignore: -------------------------------------------------------------------------------- 1 | docs 2 | -------------------------------------------------------------------------------- /examples/main.js: -------------------------------------------------------------------------------- 1 | import Vue from "vue"; 2 | import App from "./app.vue"; 3 | 4 | new Vue({ 5 | el: "#app", 6 | render: h => h(App) 7 | }); 8 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | [ 4 | "env", 5 | { 6 | "targets:": { 7 | node: "10" 8 | } 9 | } 10 | ] 11 | ] 12 | }; 13 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 |
5 | A Vue component that display pressed keys on the keyboard by the user 6 | right now. 7 |
8 |npm install vue-keyboard-over
# or
yarn add vue-keyboard-over
10 | import KeyboardOver from "vue-keyboard-over"
12 | <KeyboardOver />
14 | 15 | see more on 16 | GitHub 17 |
18 |
25 |