Extraneous non-props attributes (k) were passed to component but could not be automatically inherited because component renders fragment or text root nodes.
控制台报错:Extraneous non-props attributes (k) were passed to component but could not be automatically inherited because component renders fragment or text root nodes.
原因:在vue组件中的template标签下,有且只能有一个大的div,不能有其他同级标签
<template>
<div class="pagination">
<div>
<button>上一页</button>
<button>下一页</button>
</div>
</div>
<a> asdasdasd</a>
</template>

浙公网安备 33010602011771号