Questions tagged as 'vue.js'

0
answers

RangeSlider for Vue (Algolia)

link I find examples for React and Angular but not for VUE, will they have any external documentation about it?     
asked by 17.08.2018 / 19:23
1
answer

Send and receive file Vue-Resource and PHP

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...
asked by 13.08.2018 / 20:44
0
answers

event v-on: click in vuex

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&...
asked by 11.08.2018 / 14:57
0
answers

Problems when passing additional parameters with router-view

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...
asked by 08.08.2018 / 22:55
0
answers

Problem when passing data from parent component to children

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...
asked by 31.07.2018 / 00:37
1
answer

Help: structure site with Vue js, Server web and Server API

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...
asked by 30.07.2018 / 21:22
1
answer

Problem when uploading image - Django rest framework

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)...
asked by 28.07.2018 / 17:18
1
answer

Authentication error with VueJS and Firebase

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...
asked by 24.07.2018 / 20:40
0
answers

Animation when loading main page (only once) vuejs

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...
asked by 24.07.2018 / 15:54
1
answer

Vue router: Route child loads the parent component

{ path: '/designblock', name: 'Design Block', component: Design, children: [ { path: 'title', component: title, } ], }, I have that route defined and when entering title the child rou...
asked by 21.07.2018 / 01:21