2018-02-27 04:14:29 +00:00
< script >
2019-01-12 03:33:27 +00:00
import Basic from './basic' ;
import Disabled from './disabled' ;
import Text from './text' ;
import Size from './size' ;
import Loading from './loading' ;
import CN from '../index.zh-CN.md' ;
import US from '../index.en-US.md' ;
2018-02-27 04:14:29 +00:00
const md = {
2018-09-05 13:28:54 +00:00
cn : ` # Switch 开关
2018-02-27 04:14:29 +00:00
开关选择器 。
# # 何时使用
- 需要表示开关状态 / 两种状态之间的切换时 ;
2018-09-05 13:28:54 +00:00
- 和 \ ` checkbox \` 的区别是,切换 \` switch \` 会直接触发状态改变,而 \` checkbox \` 一般用于状态标记,需要和提交操作配合。
2018-02-27 04:14:29 +00:00
# # 代码演示 ` ,
us : ` # Switch
Switching Selector .
# # When To Use
- If you need to represent the switching between two states or on - off state .
2018-09-05 13:28:54 +00:00
- The difference between \ ` Switch \` and \` Checkbox \` is that \` Switch \` will trigger a state change directly when you toggle it, while \` Checkbox \` is generally used for state marking, which should work in conjunction with submit operation.
2018-03-20 13:48:01 +00:00
# # Examples ` ,
2019-01-12 03:33:27 +00:00
} ;
2018-02-27 04:14:29 +00:00
export default {
2018-03-20 13:48:01 +00:00
category : 'Components' ,
subtitle : '开关' ,
type : 'Data Entry' ,
title : 'Switch' ,
2018-02-27 04:14:29 +00:00
render ( ) {
return (
< div >
< md cn = { md . cn } us = { md . us } / >
< Basic / >
< br / >
< Disabled / >
< br / >
< Text / >
< br / >
< Size / >
< br / >
< Loading / >
< br / >
< api >
< template slot = 'cn' >
< CN / >
< / template >
< US / >
< / api >
< / div >
2019-01-12 03:33:27 +00:00
) ;
2018-02-27 04:14:29 +00:00
} ,
2019-01-12 03:33:27 +00:00
} ;
2018-02-27 04:14:29 +00:00
< / script >