Posts by Rodolpho Pueyrredón • 27 points
2 posts
-
-2
votes1
answer234
viewsQ: Vue does not work with ajax
I’m new to Vue and I made a simple code: var appCtrlUsuario = new Vue({ el: '#appCtrlUsuario', data: { Nome: '', Email: '', Cond: '', Type: [{ id: 1, name: 'Morador' }, { id: 2, name: 'Síndico -…
-
3
votes2
answers106
viewsQ: How to implement an interface to secure a specific contract?
Need to get an interface to implement a list of a certain type: public class ITrade<T> { public int date { get; set; } public double price { get; set; } public double amount { get; set; }…