Created
July 7, 2019 20:52
-
-
Save SteinRobert/9aae9f3fb846fe15e2d5ab1d65502016 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <div @click="$emit('update:active', !active)"> | |
| <label :for="id">{{ label }}</label> | |
| <input type="checkbox" :name="name" :id="id" :checked="active" hidden aria-hidden="true"> | |
| <div class="toggle"></div> | |
| </div> | |
| </template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment