I'm trying to make a login system with vue and firebase, but I'm having trouble redirecting the user after authentication:
login: function () {
firebase.auth().signInWithEmailAndPassword(this.email, this.password).then(
(user) => {...
I'm using the vue card component, with a static image, inside a
v-navigation-drawer.
<v-card-media height="80" src="/static/img/logo.png"></v-card-media>
How do I change the image according to the state of the navigation?
I...
I'm developing a PWA and I'm having problems with the router, because when I use the back button on my smartphone it goes through all the routes I've visited previously and only after leaving the application, and I want it when the user uses the...
In an ajax call I make to the server in a report generation function I'm encountering a situation.
In the body of the request I send a small array, with 20 positions, everything happens normally, but when I send a heavier request, with about...
I have a project that started with the vuetify webpack (vue init vuetifyjs / webpack). At the time the project was created, the e2e / unit testing option was not selected. But now there is a need for testing.
I checked the manual installation...
I have a list of search results of the routes of my SPA brought through a v-for and I need that for the router-links accessed, have a style similar to a: visited and I can not do this with the css of the page.
When accessing an item, when return...
I am exporting a function to another file that is as a webpack-simple + vuejs component, This is the function of api-user.js file:
export function getUsers () {
axios.post('/api/get_list',{})
.then(req => {return req.data.list;})...
I am using Electron + VueJS , and I would like to know how to implement auto updater , I did a search, but I could not do anything, to be honest, I did not understand how it works, update, these things.
I downloaded an admin template from the internet and as usual, come various other css, js, plugins and so on. One of these files is for the template menu to leave li open with its sub-lis and highlighted in the active link. Because it i...