Top "Vue.js" questions

Vue.

Vue.JS value tied on input having the focus

Is there a way to change a value in the model when an input gets/loses focus? The use case …

vue.js onfocus
How to add dynamically attribute in VueJs

I'm using vuejs and I wanna know how to have control on inputs (add disabled attribute when necessary). Is there …

javascript vue.js dynamic vue-component
Method vs Computed in Vue

What is the main difference between a method and a computed value in Vue.js? They look the same and …

javascript methods vue.js vuejs2 computed-properties
Vuex state on page refresh

My app uses the Firebase API for User Authentication, saving the Login status as a boolean value in a Vuex …

javascript vue.js vuejs2 state vuex
Accessing props in vue component data function

I am passing a props to a component: <template> {{messageId}} // other html code </template> <script&…

vue.js vue-loader
VueJS access child component's data from parent

I'm using the vue-cli scaffold for webpack My Vue component structure/heirarchy currently looks like the following: App PDF Template …

vue.js vue-component vuex
Get element height with Vuejs

I want to get the height of a div in order to make the height of another div matching it. …

javascript html vue.js vuejs2 vue-component
Difference between the created and mounted events in Vue.js

Vue.js documentation describes the created and mounted events as follows: created Called synchronously after the instance is created. At …

javascript vue.js
Enclosing a router-link tag in a button in vuejs

Can I wrap or enclose a router-link tag in a button tag? When I press the button, I want it …

button vue.js vue-router
ES6 import using at ('@') sign in path in a vue.js project using Webpack

I'm starting out a new vue.js project so I used the vue-cli tool to scaffold out a new webpack …

javascript webpack ecmascript-6 vue.js