mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
39 lines
696 B
JavaScript
39 lines
696 B
JavaScript
import { use } from '../utils';
|
|
import Cell from '../cell';
|
|
import Switch from '../switch';
|
|
import SwitchMixin from '../mixins/switch';
|
|
|
|
const [sfc, bem] = use('switch-cell');
|
|
|
|
export default sfc({
|
|
mixins: [SwitchMixin],
|
|
|
|
props: {
|
|
title: String,
|
|
border: Boolean,
|
|
size: {
|
|
type: String,
|
|
default: '24px'
|
|
}
|
|
},
|
|
|
|
watch: {
|
|
value() {
|
|
this.$emit('change', this.value);
|
|
}
|
|
},
|
|
|
|
render(h) {
|
|
return (
|
|
<Cell center title={this.title} border={this.border} class={bem()}>
|
|
<Switch
|
|
{...{ props: this.$props }}
|
|
onInput={value => {
|
|
this.$emit('input', value);
|
|
}}
|
|
/>
|
|
</Cell>
|
|
);
|
|
}
|
|
});
|