All Questions
4 questions
2
votes
1
answer
489
views
Vuex action returning jQuery promise doesn't work, .fail is not a function
I have a vuex action like this
myAction() {
const deferred = $.Deferred();
setTimeout(() => deferred.resolve(), 3000);
return deferred.promise();
}
in my vue component
myMethod() {
...
0
votes
1
answer
3k
views
Save image type on image upload using vue.js
I'm trying to upload image using vue.js that will be multiple images and user can get preview of those images, but i also want to save image type i.e. user can set primary image from groups of images ...
2
votes
2
answers
2k
views
Setting values in a Vue.js form using jQuery
I have a huge form that's on an external website (no control over source code) that's been created with Vue.js. I'm trying to bulk update this form by using the console. When I try to change the ...
2
votes
1
answer
253
views
Cloned router-link should load on child router-view but it also reloads main reouter-view
I have a problem regarding VueJS with vue-router and datatables.net.
What I want to achieve is to get edit buttons in my datatable for each entery. To do this I first create an object in template for ...