vuejs アプリでこの警告が永続的に表示されます。場所と理由がわかりません。
build.js:9371 [Vue warn]: Attribute "id" is ignored on component <div> because the component is a fragment instance
私はindex.htmlでvue-routerを使用しています:
<body>
<div id="app"></div>
</body>
vuejs アプリでこの警告が永続的に表示されます。場所と理由がわかりません。
build.js:9371 [Vue warn]: Attribute "id" is ignored on component <div> because the component is a fragment instance
私はindex.htmlでvue-routerを使用しています:
<body>
<div id="app"></div>
</body>
コンポーネントに DOM 要素が 1 つも含まれていない場合、それはフラグメント インスタンスであり、ID を持つことはできません。つまり、展開すると
<div></div>
<div></div>
<div></div>
を配置する正しい場所はありませんid
。