前端开发:Vue3.0提示警告… declare it using the “emits“ option. 的解决方法

前言

在前端开发中使用Vue的开发者都知道,Vue现在已经以3.0为基础版本了,也就是说Vue3.0已经成为主流版本了。还在只用Vue2.0开发没有使用3.0的开发者要注意了,要赶紧熟悉和了解Vue3.0的相关语法和知识点了。本篇博文就来分享一下关于在使用Vue3.0的时候遇到的一个提示警告,这是一个比较常见的问题,分享出来方便以后查阅使用。

报错提示

具体的报错提示如下所示:

vconsole.min.js:10 [Vue warn]: Extraneous non-emits event listeners (trustBuyClick) were passed to component but could not be automatically inherited because component renders fragment or text root nodes. If the listener is intended to be a component custom event listener only, declare it using the "emits" option.

  at <TrustDetailItem detailData= (2) [{…}, {…}] onTrustBuyClick=fn<bound trustBuyClick> >

  at <TrustDetail onVnodeUnmounted=fn<onVnodeUnmounted> ref=Ref< null > key=0 >

  at <RouterView>

  at <App>


版权声明:本文为CC1991_原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。