Top "Vuejs2" questions

Use this tag for questions specific to version 2 of Vue.

Axios Interceptors retry original request and access original promise

I have an interceptor in place to catch 401 errors if the access token expires. If it expires it tries the …

javascript vue.js promise vuejs2 axios
Accessing nested child components in VueJS

Using v2.2.2. I have the following structure in my VueJS app. How can I access all of the Account components …

vue.js vuejs2 vue-component
VueJs vue-router linking an external website

This may be simple, but I've looked over documentation and can't find anything about it. I want to have my …

css vue.js vuejs2 vue-router routerlink
Open link in new window with Vuetify v-btn and Vue router

Recent versions of Vue Router allow for links that open in a new tab, e.g. the following <router-link :…

vue.js vuejs2 vue-router vuetify.js
What's the equivalent of Angular Service in VueJS?

I want to put all my functions that talk to the server and fetch data into a single reusable file …

service vue.js vuejs2
Progress Bar with axios

I have to display the upload status of the file using a Progress Bar. I am using axios to make …

javascript progress-bar vuejs2 axios
Vue.js: Data is not updating with state change so the re-render does not happen

I have a reusable component that is a video.js video player. This component works fine when the data is …

vue.js vuejs2 video.js
VueJs 2.0 emit event from grand child to his grand parent component

It seems that Vue.js 2.0 doesn't emit events from a grand child to his grand parent component. Vue.component('parent', { …

javascript vuejs2 vue.js
Vue $route is not defined

I'm learning Vue router. And I want to made programmatic navigation without using <router-link> in templates file. My …

javascript vue.js vuejs2 vue-component vue-router
How to solve Interpolation inside attributes has been removed. Use v-bind or the colon shorthand ? Vue.JS 2

My vue component is like this : <template> <div> <div class="panel-group" v-for="item in list"&…

vue.js vuejs2 vue-component