How vue dynamic components trigger parent components

parent
clipboard.png


clipboard.png

clipboard.png

if binding < component: is= "currentView" @ goScore= "parentScore" > is invalid, how do I bind it?

Mar.09,2021

are all dynamic components, aren't they managed by vuex?


is the click event of el-button . All custom components in Vue2 need .native to use native event , so you need to modify it as follows:

<el-button size="mini" @click.native="goScore"></el-button>
Menu