How to change the logotip of pages when using vue-router?

Advertisements <img v-if="visibl" :class="{logoB:visible}" src="@/assets/images/svg/logo-footer.svg" alt=":(/> data() {emphasized text return { visible: false, }; }, >Solution : You can add watch to your router in component, So: <template> <div> <img v-if="visible" :class="{logoB:visible}" src="@/assets/images/svg/logo-footer.svg" /> </div> </template> script part here export default { name: "MyComponent", data() { return { visible: false } }, watch: { $route:… Read More How to change the logotip of pages when using vue-router?