Questions tagged as 'vue.js'

0
answers

Pass input value to a model in VUE

I am working with vue, create a variant $ gate to be able to access the user's information in this way: <input type="hidden" name="" id="valueid_profile" :value="$gate.idProfile()"> my question is how can I do to pass the value idP...
asked by 17.11.2018 / 17:18
1
answer

Get the data of several new inputs with VueJS within methods

I have that problem. I'm doing a system for the faculty and I decided to do it with Vue. My knowledge is not much in Vue, but I'm doing very well so far ... The code works perfectly for me, so I also use jQuery for some things I do not know abou...
asked by 18.11.2018 / 16:33
0
answers

Vue js (use condition inside for each)

I would like to know how I can use a conditional within a format each with Vue js For example, from an array to select certain elements depending on a conditional     
asked by 16.11.2018 / 05:29
0
answers

Return data with Firestore and Vuejs

Dear I need to know how to return data with Firestore and Vuejs. The problem I have is that I can see the data from console.log () but not from v-for="". Complete script: <template> <div id="cuentacontable"> {{ mensa...
asked by 14.11.2018 / 12:05
0
answers

Extract HTML attribute data with Vuejs

Dear I am developing a component collapse (accordion), which will show me data. But I need to make the method where I show the data is executed at the beginning of the application: mounted:function(){ // invocar los métodos this.idRu...
asked by 18.11.2018 / 22:44
0
answers

Update the server time with vuejs

I am creating a simple application in which I acquire the time with php: <?php // Timezone date_default_timezone_set("America/New_York"); // CDT //Time $timestamp = time(); //Format $date_time = date("H:i:s", $timestamp); //String $time =...
asked by 10.11.2018 / 01:44
0
answers

Load style sheets asynchronously?

I am building a SPA and there comes a time when I need to insert a new style sheet and remove the old one. I do not like the solution: $('head').append('<link rel="stylesheet" href="new_estyles.css" type="text/css" />'); $("LINK[hre...
asked by 05.11.2018 / 22:41
0
answers

consume an api with vuejs and axios

When I try to put, it gives me an error 403 because I do not authenticate a user and I test it with postman and it works as long as the user passes it my question is how I do it with axios since I have tried many ways and nothing     
asked by 09.11.2018 / 00:48
0
answers

How to consume a web service in laravel first and then visualize it in canvas?

PROBLEM I am trying to consume a web service that returns a series of data to me, I want to visualize that data through canvas. What I intend is to make statistics with the consumed data and visualize it in a bar graph created with canvas....
asked by 02.11.2018 / 21:21
0
answers

error getting getter from an action of another vuex module Can not read property 'rootGetters' of undefined

When executing an action I get an error, in which I access getter that is in another module:    [TypeError: Can not read property 'rootGetters' of undefined] For example, this action works and it calls the getter of the other module:...
asked by 26.10.2018 / 20:24