Author -  Sai gowtham

How to change the favicon dynamically in Vue

In this tutorial, we are going to learn about how to dynamically change the favicon in a Vue app.

Note: This tutorial, assumes that you already created a new vue project using vue cli.

Changing the favicon dynamically

  1. Open the Vue project in your favorite code editor.

  2. Navigate to the public folder and open the index.html file, add the id attribute to the

following link tag.

<link rel="icon" id="favicon" href="<%= BASE_URL %>favicon.ico">

Now, we can access this favicon link tag inside our App.vue file by using the document.getElementById() method then we need to update its href property with a new favicon like this.

App.vue
<template>
  <div id="app">
    <button @click="handleIcon()">Change icon</button>  </div>
</template>

<script>
export default {
  methods: {
    handleIcon() {
                       // accessing the link tag
      const favicon = document.getElementById("favicon");      favicon.href = "https://www.google.com/favicon.ico";    }
  }
};
</script>

If we click on the Change icon button, the handleIcon() method is invoked and the current favicon is changed to Google's favicon.

Css Tutorials & Demos

How rotate an image continuously in CSS

In this demo, we are going to learn about how to rotate an image continuously using the css animations.

How to create a Instagram login Page

In this demo, i will show you how to create a instagram login page using html and css.

How to create a pulse animation in CSS

In this demo, i will show you how to create a pulse animation using css.

Creating a snowfall animation using css and JavaScript

In this demo, i will show you how to create a snow fall animation using css and JavaScript.

Top Udemy Courses

JavaScript - The Complete Guide 2023 (Beginner + Advanced)
JavaScript - The Complete Guide 2023 (Beginner + Advanced)
116,648 students enrolled
52 hours of video content
$14.99 FROM UDEMY
React - The Complete Guide (incl Hooks, React Router, Redux)
React - The Complete Guide (incl Hooks, React Router, Redux)
631,582 students enrolled
49 hours of video content
$24.99 FROM UDEMY
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
203,937 students enrolled
31.5 hours of video content
$14.99 FROM UDEMY