FreeTube/src/renderer/components/ft-toggle-switch/ft-toggle-switch.vue

24 lines
463 B
Vue

<template>
<div>
<input
:id="id"
v-model="currentValue"
type="checkbox"
name="set-name"
class="switch-input"
:checked="currentValue"
@change="$emit('change', currentValue)"
>
<label
:for="id"
class="switch-label"
:class="{compact}"
>
{{ label }}
</label>
</div>
</template>
<script src="./ft-toggle-switch.js" />
<style scoped lang="sass" src="./ft-toggle-switch.sass" />