mirror of https://github.com/Requarks/wiki.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
392 B
21 lines
392 B
<template lang="pug">
|
|
.toggle(:class='{ "is-active": value }', @click='changeToggle')
|
|
.toggle-container
|
|
.toggle-pin
|
|
.toggle-text {{ desc }}
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'toggle',
|
|
props: ['value', 'desc'],
|
|
data () {
|
|
return { }
|
|
},
|
|
methods: {
|
|
changeToggle() {
|
|
this.$emit('input', !this.value)
|
|
}
|
|
}
|
|
}
|
|
</script>
|