vant/packages/switch/index.vue
2018-11-15 15:30:17 +08:00

56 lines
902 B
Vue

<template>
<div
:class="b({
on: value,
disabled
})"
:style="style"
@click="onClick"
>
<div :class="b('node')">
<loading
v-if="loading"
:class="b('loading')"
/>
</div>
</div>
</template>
<script>
import create from '../utils/create';
export default create({
name: 'switch',
props: {
value: Boolean,
loading: Boolean,
disabled: Boolean,
activeColor: String,
inactiveColor: String,
size: {
type: String,
default: '30px'
}
},
computed: {
style() {
return {
fontSize: this.size,
backgroundColor: this.value ? this.activeColor : this.inactiveColor
};
}
},
methods: {
onClick() {
if (!this.disabled && !this.loading) {
this.$emit('input', !this.value);
this.$emit('change', !this.value);
}
}
}
});
</script>