mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-11-30 02:57:50 +08:00
add radio demo
This commit is contained in:
parent
13d0ae378e
commit
284126e91d
@ -4,16 +4,39 @@
|
|||||||
<Basic />
|
<Basic />
|
||||||
<h1>Disabled</h1>
|
<h1>Disabled</h1>
|
||||||
<Disabled />
|
<Disabled />
|
||||||
<Layout />
|
<h1>RadioButton</h1>
|
||||||
|
<RadioButton />
|
||||||
|
<h1>RadioGroupMore</h1>
|
||||||
|
<RadioGroupMore />
|
||||||
|
<h1>RadioGroupOptions</h1>
|
||||||
|
<RadioGroupOptions />
|
||||||
|
<h1>RadioGroupWithName</h1>
|
||||||
|
<RadioGroupWithName />
|
||||||
|
<h1>RadioGroup</h1>
|
||||||
|
<RadioGroup />
|
||||||
|
<h1>Size</h1>
|
||||||
|
<Size />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import Basic from './basic'
|
import Basic from './basic'
|
||||||
import Disabled from './disabled'
|
import Disabled from './disabled'
|
||||||
|
import RadioButton from './radioButton'
|
||||||
|
import RadioGroupMore from './radioGroup-more'
|
||||||
|
import RadioGroupOptions from './radioGroup-options'
|
||||||
|
import RadioGroupWithName from './radioGroup-with-name'
|
||||||
|
import RadioGroup from './radioGroup'
|
||||||
|
import Size from './size'
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
Basic,
|
Basic,
|
||||||
Disabled,
|
Disabled,
|
||||||
|
RadioButton,
|
||||||
|
RadioGroupMore,
|
||||||
|
RadioGroupOptions,
|
||||||
|
RadioGroupWithName,
|
||||||
|
RadioGroup,
|
||||||
|
Size,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
Reference in New Issue
Block a user