mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
* search component add new style * update vue version and support ssr * unit test * add new icon * new icon
89 lines
2.4 KiB
Vue
89 lines
2.4 KiB
Vue
<template><section class="demo-switch"><h1 class="demo-title">Switch 开关</h1><example-block title="基础用法">
|
|
<van-row>
|
|
<van-col span="12">
|
|
<van-switch class="some-customized-class" v-model="switchState1"></van-switch>
|
|
<div class="demo-switch__text">{{ switchState1 ? ' 打开' : '关闭' }}</div>
|
|
</van-col>
|
|
<van-col span="12">
|
|
<van-switch class="some-customized-class" v-model="switchState2" :on-change="updateState"></van-switch>
|
|
<div class="demo-switch__text">{{ switchState2 ? ' 打开' : '关闭' }}</div>
|
|
</van-col>
|
|
</van-row>
|
|
|
|
|
|
|
|
|
|
|
|
</example-block><example-block title="禁用状态">
|
|
<van-row>
|
|
<van-col span="12">
|
|
<van-switch class="some-customized-class" v-model="switchStateTrue" disabled></van-switch>
|
|
<div class="demo-switch__text">打开</div>
|
|
</van-col>
|
|
<van-col span="12">
|
|
<van-switch class="some-customized-class" v-model="switchStateFalse" disabled></van-switch>
|
|
<div class="demo-switch__text">关闭</div>
|
|
</van-col>
|
|
</van-row>
|
|
|
|
|
|
|
|
</example-block><example-block title="loading状态">
|
|
<van-row>
|
|
<van-col span="12">
|
|
<van-switch class="some-customized-class" v-model="switchStateTrue" loading=""></van-switch>
|
|
<div class="demo-switch__text">打开</div>
|
|
</van-col>
|
|
<van-col span="12">
|
|
<van-switch class="some-customized-class" v-model="switchStateFalse" loading=""></van-switch>
|
|
<div class="demo-switch__text">关闭</div>
|
|
</van-col>
|
|
</van-row>
|
|
|
|
|
|
|
|
</example-block></section></template>
|
|
<style>
|
|
@component-namespace demo {
|
|
@b switch {
|
|
.van-switch {
|
|
float: left;
|
|
margin: 0 15px;
|
|
}
|
|
|
|
@e text {
|
|
display: inline-block;
|
|
line-height: 32px;
|
|
float: left;
|
|
font-size: 14px;
|
|
color: #333;
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
<script>
|
|
import Vue from "vue";import ExampleBlock from "components/example-block";Vue.component("example-block", ExampleBlock);
|
|
import Dialog from 'packages/dialog';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
switchState1: true,
|
|
switchState2: false,
|
|
switchStateTrue: true,
|
|
switchStateFalse: false
|
|
};
|
|
},
|
|
methods: {
|
|
updateState(newState) {
|
|
const state = newState ? '打开' : '关闭';
|
|
Dialog.confirm({
|
|
title: '提醒',
|
|
message: '是否' + state + '开关?'
|
|
}).then((action) => {
|
|
this.switchState2 = newState;
|
|
}, (error) => {});
|
|
}
|
|
}
|
|
};
|
|
</script> |