mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
50 lines
751 B
Vue
50 lines
751 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,
|
|
size: {
|
|
type: String,
|
|
default: '30px'
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
style() {
|
|
return {
|
|
fontSize: this.size
|
|
};
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
onClick() {
|
|
if (!this.disabled && !this.loading) {
|
|
this.$emit('input', !this.value);
|
|
this.$emit('change', !this.value);
|
|
}
|
|
}
|
|
}
|
|
});
|
|
</script>
|