<el-radio v-model="radio" label="1">备选项</el-radio>
<el-radio v-model="radio" label="2">备选项</el-radio>
报错:
Errors compiling template:
Component template should contain exactly one root element. If you are using v-if on multiple elements, use v-else-if to chain them instead.
原因:没有设置div
解决办法: 在radio外增加 div
标签:选项,vue,多个,报错,template,div From: https://www.cnblogs.com/lytcreate/p/17614743.html