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警告]:渲染函数返回了多个根节点。渲染功能应返回单个根节点。(在组件中找到)
我应该如何修复代码?
对于懒惰者:Vue将其上具有
v-for
循环的根元素解释为产生多个根级别元素(现代JS框架中的nono)。只需将模板包裹在多余的空白中即可
<div>
。👌