router-link默认是粉色字体颜色,我们想改变其样式可以在APP.vue中设置全局默认样式
a{ color: black; text-decoraction: none; }
设置点击样式我们可以使用router-link-active , 可以使用!important增加权重
.router-link-active { color:"red"; }
router-link默认是粉色字体颜色,我们想改变其样式可以在APP.vue中设置全局默认样式
a{ color: black; text-decoraction: none; }
设置点击样式我们可以使用router-link-active , 可以使用!important增加权重
.router-link-active { color:"red"; }