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>

  

posted @ 2023-02-04 13:12  BjpFee  阅读(772)  评论(0)    收藏  举报