Change this case to @click.native
To bind events to elementui’s el-Dropdown-Item component, you must add the Navtive modifier, which listens for the native event of the root element
<el-dropdown>
<span class="el-dropdown-link">new<i class="el-icon-arrow-down el-icon--right"></i>
</span>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item icon="el-icon-plus" @click.native="showEdit">The new note</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
Copy the code