Questions tagged as 'vue.js'

0
answers

How to send a data from a child component to a parent in vue.js?

I have an application in vue.js I need to pass the data "nameComponent" of the following component: <template> <div class="dash"> <fish-row gutter="1"> <fish-col type="fixed" :width="200"><h2>{{nameCom...
asked by 23.08.2018 / 04:01
1
answer

How can I set a date in the current day?

I have 2 datetimepicker type date_start & date end and datepicker date_reincorporation , when I choose the same date in the 1st I need the second one to keep the current date since if a user takes a license the same day on the d...
asked by 31.07.2018 / 13:33
0
answers

How to incorporate a page paging in Vuejs?

I am in the process of learning with this framework ( vue. js ) and I need to find a way to add a page in a table, by which, it should be expanded as more objects are added and then list them in the table and limit the number of items to be disp...
asked by 18.07.2018 / 16:22
1
answer

Problem with axes vue and php: Undefined Index

I have a very simple code, I'm using PHP VueJs and axios for Ajax requests I have a button that sends data by ajax to a php file per post but it does not recognize post data, that I infer from this error:    Notice: Undefined index: email...
asked by 16.08.2018 / 06:01
0
answers

How to run the proxy included in the package.json for axios calls

I have a VUE application configured with a net.core application as backend To avoid cors problems, it would be ideal to configure a proxy. However my attempts were in vain, since I did not find a way to do it. The application is created wi...
asked by 17.08.2018 / 14:57
0
answers

How to use timeago (or any component vue) in Quasar page?

I'm looking for a way to do an 'elapsed time' for the frontend of a messaging application (in Quasar) so that the messages come out like for example "Sent by Jaimito 5 minutes ago". Investigate and find that the timeago component exist...
asked by 05.05.2018 / 16:13
0
answers

Implement the halower / vue-tree library in laravel 5.6 [closed]

I am trying to use the following library link this uses jsx, complete all the steps of configuration but it shows me rendering error     
asked by 27.04.2018 / 22:27
0
answers

How to make a confirmation dialog with vue js?

I have a module to add contracts in vue: createContrato: function(){ //aca deberia mostrar el dialogo de confirmacion antes de agregar el contrato this.newContrato.CONT_datFin=document.getElementById('CONT_datFin').valu...
asked by 13.04.2018 / 12:53
0
answers

Laravel - Define access control using Homecontroller

HomeController public function __construct() { $this->middleware(['auth:embajador','auth:experto']); } public function index() { return view('home'); } My problem is that it is cyclizing the informati...
asked by 14.12.2018 / 01:14
1
answer

Clean form fields after sent with Vue2 and Axios

I have a form that sends, in Vue.js , by axios without any problem the data, and I wish that after successfully sent, the content of the fields is deleted. I have tried with .reset() but without success, and for some reason I...
asked by 28.03.2018 / 19:05