无法在有状态组件根元素上使用v-for,因为它呈现多个元素?

时间:2017-05-26 04:48:34

标签: laravel vue.js components blade

app.js

var Users = {
    template: `
        <tr v-for="list in UsersData">
            <th>{{ list.idx }}</th>
            <td>{{ list.id }}</td>
        </tr>
    `,
    data: function () {
        return {
            UsersData //get data from query
        }
    }
}

var mainview = new Vue({
    el: "#mainview",
    components: {
        'users': Users
    },
    method: {}
})

layout.blade.php

<body>
    <div class="container">
        <aside>...</aside>
        <main id="mainview">
            @section('content')
            @show
        </mainview>
    </div>
</body>

index.blade.php

@extends('layout')
@section('content')
<table>
    <thead>
        <tr>
            <th>IDX</th>
            <th>ID</th>
        </tr>
    </thead>
    <tbody>
        <users></users>
    </tbody>
</table>
@endsection

Chrome控制台的错误日志

[Vue警告]:无法在有状态组件根元素上使用v-for,因为它呈现多个元素:

<tr v-for="list in UsersData">
    <th>{{ list.idx }}</th>
    <td>{{ list.id }}</td>
</tr> 

vue.js:525 [Vue warn]:渲染函数返回多个根节点。渲染函数应返回单个根节点。 (在组件中找到)

我该如何修改代码?

2 个答案:

答案 0 :(得分:32)

您的模板必须有一个根元素。这只是一个你不能打破的规则。由于你正在创建一个表,因此将tbody作为根元素是有意义的。

var Users = {
    template: `
        <tbody>
            <tr v-for="list in UsersData">
                <th>{{ list.idx }}</th>
                <td>{{ list.id }}</td>
            </tr>
        </tbody>
    `,
    data: function () {
        return {
            UsersData //get data from query
        }
    }
}

index.blade.php

@extends('layout')
@section('content')
<table>
    <thead>
        <tr>
            <th>IDX</th>
            <th>ID</th>
        </tr>
    </thead>
    <users></users>
</table>
@endsection

答案 1 :(得分:19)

对于懒惰:Vue解释其上有v-for循环的根元素,因为它生成了多个根级元素(现代JS框架中的nono)。

只需将模板包装在多余的空白<div>中即可。