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

<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: {
            handler: function(to) {
                this.visible = to.name === 'my-awesome-route';
            },
            immediate: true,
        }
    }
}

Leave a Reply