[Vue warn]: Extraneous non-emits event listeners (getNum) 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.

vue3 在使用this.$emit()时候会报以上警告
解决方案:在子页面里注册声明一下方法(如图在emits中声明),并且注册声明后也能父页面写自定义事件能友好的提示
