Skip to content

Latest commit

 

History

History
80 lines (61 loc) · 2.07 KB

README.md

File metadata and controls

80 lines (61 loc) · 2.07 KB

vue-konami

Quality Gate Status Coverage Version Downloads License


Vue Konami Icon

The indispensable directive for VueJS

Documentation

Full documentation website can be found here.

If targeting Vue2, please read Legacy docs

Installation

npm install vue-konami --save

Usage

Simple

<div v-konami="easterEgg"></div>

<script setup>
  const easterEgg = () => {
    alert('easterEgg');
  };
</script>

Advanced

<div v-konami="easterEgg"></div>

<script setup>
  const easterEgg = {
    timeout: 500,
    chain: ['A', 'Z', 'E', 'R', 'T', 'Y'],
    callback: () => {
      alert('easterEgg');
    }
  };
</script>

Contributors

cadgerfeast
cadgerfeast
Aterbonus
Aterbonus

License

MIT