RadioGroup selection error

RadioGroup selection error
Radio can be selected at the same time. `< html >

https://jsfiddle.net/ozx2937s/1/

< head >

<link href="https://cdn.bootcss.com/iview/3.1.5/styles/iview.css" rel="stylesheet">
<script src="https://cdn.bootcss.com/vue/2.5.18-beta.0/vue.min.js"></script>
<script src="https://cdn.bootcss.com/iview/3.1.5/iview.min.js"></script>
<script src="https://cdn.bootcss.com/iview/3.1.5/locale/zh-CN.js"></script>

< / head >

< body >

<div id="app">
    <RadioGroup v-model="value">
        <Radio v-for="o in items" :label="o">
        </Radio>
    </RadioGroup>
</div>
<script>
    new Vue({
        el: "-sharpapp",
        data: {
            value: "",
            items: ["", ""],
        }
    });
</script>

< / body >

< / html > `

Mar.02,2022
If

is not compiled without iview-loader, the tag is not written this way. Refer to ide/iview-loader" rel=" nofollow noreferrer "> https://www.iviewui.com/docs/.


RadioGroup, CheckboxGroup under cdn reference, you should use kebab-case to write
radio-group and checkbox-group . Similarly, there are time-picker , date-picker and so on

.
Menu