Posts by Roberto Monteiro • 57 points
7 posts
-
1
votes0
answers865
viewsQ: Run function within Date in Vue.Js
In a Vue.Js component I use this Script template as in the example. On a getter, I inserted a Return of what is received const GetSegmento = () => (param) => { return (() => { return param…
-
3
votes1
answer56
viewsQ: Array insertion organized in Array for later use as variable
In a Javascript file, I have the following array group: logo: [ require('@/assets/images/logos/lojas-' + cobrand[0] + '.png'), require('@/assets/images/logos/lojas-' + cobrand[1] + '.png'),…
-
0
votes1
answer217
viewsQ: Merge the values of an Array inside another Array
I have several Arrays throughout the program to check identifiers Soon in a function I check a include to know if a particular identifier is inside an object the object has the following format {…
-
0
votes1
answer77
viewsA: Get function return inside a Vuex getter
Solution for those in need Just change the return of Function, if you pass this if (rule === 'email') return value =>…
-
0
votes1
answer77
viewsQ: Get function return inside a Vuex getter
Good afternoon, I am using the vuetify bind Rules and in it a method that comes from inside a getter in a module. in bind the method returns in the best possible way, giving me error or succes and…
-
0
votes1
answer271
viewsQ: Object and Like Array search in Javascript to return the Index find
I recently asked this question Object and Like Array Search in Javascript and it was answered to me in the best possible way, I am studying the documentation but with some difficulties where I came…
-
1
votes1
answer77
viewsQ: Object and Like Array Search in Javascript
I’m trying to get the value of a key inside an object inside an array, I can bring all the values of the key detyerminada, what I couldn’t get because I didn’t understand it properly was to bring…