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

38 lines
752 B
Vue

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