I'm trying to send an image using vue-resource and retrieve it in a php file but I have not succeeded, this is my JS file:
//* AJAX *//
startAsyncNews: function(){
if(this.sendimage){
var formdata = new FormData();
formdata...
Hi, I'm working on a project where I need to click through from one chart to another, so I click anywhere in chart and I need this to stop showing and show me the second chart from a component of vuex .
<template&...
I'm using vue route and I have the following link:
<router-link :to="{name:'calendars', params:{ year:c.year, id:c.id}}">
Calendario
</router-link>
The route for this link is:
{
name: 'calendars',
path: '/calendari...
I have a Welcome.vue parent component that I arrived at after logging in, as the template became very extensive, I took out the navigationDrawer and the Toolbar in two external components, something like:
<template>
<navigation-dr...
how are you? I wanted to consult if there is any way that is styled, either in performance or directly as good practices, for the following:
The application of the web side is with Vue js, there will also be an API to be consumed by both web and...
I have 2 models User and EcoUser with a relation of 1 to 1 (I have reduced the fields of the tables for this example):
class User(AbstractUser):
picture_url = models.ImageField(upload_to='logos/', blank=True)
class EcoUser(models.Model)...
I have an error that is happening to me when authenticating with VueJS and Firebase.
It is a simple application that when authenticating, should redirect me to the profile of the user and show me the data of it.
But sometimes it shows me the dat...
I have an animation in css3 which I want to run when I load the page and only run once the problem is found when I go a page forward and I return the animation is restarted
or when they enter the site after leaving, it occurs to me to do...
{
path: '/designblock',
name: 'Design Block',
component: Design,
children: [
{
path: 'title',
component: title,
}
],
},
I have that route defined and when entering title the child rou...