Using the navigation implementation of elementUI in vue, click the li tag to change the font color.

Dec.09,2021

chang(a,b) // a,b?  ?
 chang(index) index

<el-menu-item v-for="(item,index) in nav" :key="index" :style="{'color': item.color }" @click="change(index)"></el-menu-item>

change(index){
   this.nav[index].color="-sharpf00";
}
Menu