Posts by JJJay • 11 points
3 posts
-
0
votes1
answer68
viewsA: How to send sub-Components data with Vuejs 2?
I found an alternative solution using localStorage to store and control the marked/unchecked fields and this always send only the marked items to another instance. Follows code:…
-
0
votes1
answer68
viewsQ: How to send sub-Components data with Vuejs 2?
How can I get all the items marked from one Component in another instance by having the following tree structure? window.Event = new Vue(); Vue.component('tree', { props: { model: { type: Array,…
-
1
votes1
answer360
viewsQ: How to update data from a Vue 2 directive?
How can I perform the following procedure to update data from a directive in Vue. var select = Vue.directive('select', { twoWay: true, bind: function(el, binding, vnode){ // Como acessar op ????? //…