vue中lable使用问题

我的结构如下:

<li
    v-for="(item, index) in pushData"
    :key="index"
>
    <lable
      :for="index"
      v-if="item.type=='radio' && typeof item.name === 'string'"
    >
      <input
        :id="index"
        type="radio"
      />&nbsp;{{ item.name }}
    </lable>
</li>

数据是这样的:

data () {
    return {
      pushData: {
        user: {
          name: '姓名'
        },
        class: {
          name: '分类',
          type: 'select'
        },
        region: {
          name: ['省份', '城市', '区县'],
          type: 'select'
        },
        company: {
          name: '公司'
        },
        radio: {
          name: '单选框',
          type: 'radio'
        },
        checkbox: {
          name: ['多选项1', '多选项2'],
          type: 'checkbox'
        }
      }
    }
}

输出报错:

[Vue warn]: Unknown custom element: <lable> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
found in
……

请问这是为什么呢?

阅读 2.7k
1 个回答

你的外层是有个循环吗,贴出完整代码。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题