vue 3 emit warning “ Extraneous non-emits event listeners”
问题 I am trying to emit data from child to parent using the composition API I get the following warning. [Vue warn]: Extraneous non-emits event listeners (updatedcount) 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 <HelloWorld onUpdatedcount=fn > at childcomponent.vue <template> <h1>{{ store.count }}</h1>