1 Star 0 Fork 0

gankai/gankai-ui

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test.vue 1.56 KB
一键复制 编辑 原始数据 按行查看 历史
<template>
<section class="content element-doc">
<h2 id="radio-dan-xuan-kuang">
<a class="header-anchor" href="#radio-dan-xuan-kuang"></a> Radio 单选框</h2>
<p>在一组备选项中进行单选</p>
<h3 id="ji-chu-yong-fa">
<a class="header-anchor" href="#ji-chu-yong-fa"></a> 基础用法</h3>
<p>由于选项默认可见,不宜过多,若选项过多,建议使用 Select 选择器。</p>
<demo-block>
<div>
<p>要使用 Radio 组件,只需要设置
<code>v-model</code>绑定变量,选中意味着变量的值为相应 Radio
<code>label</code>属性的值,
<code>label</code>可以是
<code>String</code>
<code>Number</code>
<code>Boolean</code>
</p>
</div>
<template slot="source">
<element-demo0 />
</template>
<template slot="highlight">
<pre v-pre>
<code class="html">
<template>
<gk-radio v-model='radio' value='1'>备选项</gk-radio>
<gk-radio v-model='radio' value='2'>备选项</gk-radio>
</template>
<script>
export default {
data() {
return {
radio: "1"
};
}
};
</script>
</code>
</pre>
</template>
</demo-block>
</section>
</template>
<script>
export default {
data() {
return {
radio: "1"
};
}
};
</script>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/gankai/gankai-ui.git
git@gitee.com:gankai/gankai-ui.git
gankai
gankai-ui
gankai-ui
master

搜索帮助