Skip to content
Advertisement

Tag: vuejs2

How to animate list items in Vue when one is removed

i have a vertical list of items, each of which can be removed. I put my items inside a transition-group and created simple opacity and transform transitions for them. The transitions on the removed elements work as expected, however if I remove an element which is not placed at the bottom, the ones beneath just jump up and take its

How to tell if a Vue component is active or not

I have a Vue component that is wrapped in a <keep-alive> tag to prevent re-rendering. Within the component, I want to react to some change in global data by firing a method. But, I only want to fire the method if the component is currently active. Right now, I’m doing something like this: But I was hoping there was already

Detecting keyboard button and play sound in vue.js

The code below actually plays sounds on each button click with vue.js. How is it possible to detect keyboard press and play sound when DOM is ready and not when the buttons are clicked? for example on enter play sound v-on:keyup.13=”playSound(‘path/to/mp3’)” Vue documentation mostly explains html attributes, perhaps this is something that needs to be done in JS, i guess.

How to emit an event from Vue.js Functional component?

As the title of the question, this context is not available in the functional component. So if I have to emit an event, how can I do that? For example in below code snippet: My functional component doesn’t have this context and hence $emit is not available. How can I bubble-up this event? Answer This is explained in the docs

Cannot remove element from array of components (slice, Vue.js)

I’am trying to implements dynamic adding and removing components in Vue.js. There is a problem with slice method, basically it should remove element from array by passed index. To mutate an array i use slice(i,1) . According to this answer, modifying array in this way should help me, but is’s not working. What i am doing wrong? Here is my

vue transition mode=”out-in” returns a ref element as undefined

So this is an issue when mode=”out-in” is applied as in <transition mode=”out-in”> a ref’d element returned undefined during the updated lifecycle. However, without the mode=”out-in” it works as expected. How can I resolve this? https://codesandbox.io/s/mjy8jr4148 Answer Solved it by using using a transition hook, specifically after-enter https://v2.vuejs.org/v2/guide/transitions.html#JavaScript-Hooks

Getting first element of Observer Array

Hi dear friends, i cannot get first element or data etc. I did try notes[0] but the result was ‘undefined’. What kind of array is this? First time i’ve seen and i am using Vue.Js Answer You can access the first element simply using Array.from: Also, {__ob__: Observer} is a special property added by Vue, it’s part of the Reactivity

Advertisement