Create a Hover effect in Vue.js (original) (raw)

Last Updated : 22 Feb, 2021

Vue is a progressive framework for building user interfaces. The core library is focused on the view layer only and is easy to pick up and integrate with other libraries. Vue is also perfectly capable of powering sophisticated Single-Page Applications in combination with modern tooling and supporting libraries.

To create the hover effect to get more information upon hovering, we have to bind the 'title' attribute and assign a proper title that we want to show upon hovering in the vue element. If it makes no sense let's jump into the example to get a more clear view.

Example:

Filename: index.html

HTML `

Different Frameworks and Libraries in JavaScript

React Vue Angular

`

Filename: app.js

JavaScript `

const parent = new Vue({ el : '#parent', data : {

    // Data that interpolate in DOM
    reactMsg: "React with Redux works awesome",
    vueMsg: "Vue is a progressive framework 
             for building user interfaces",
    angularMsg: "Angular is awesome for single 
                page application development"
}

})

`

Output:

Similar Reads

Basics







































Transition




Directives
























Filters





Routing



Difference Between