Skip to content
Advertisement

Tag: vue-component

How to animate a wizard type form with Vue JS

I am trying to implement a simple animation with Vue but unsuccessful so far. I have two divs which are rendered depending on the value of a given data property I effectively have a “next button” that will increment the value of step and then show the relevant div. I would like to create like a slide type of effect

Vue3 use v-model in Child Components

I just found out that in Vue3, v-model is not working responsively / reactively with child Component. This code will update the username data If I type something in the input, the username data will change too. But, when I use Component like this example: Then I updated my code to use the Component. Note: The Component is registered successfully.

Advertisement