Posts by Marco Oliveira • 26 points
4 posts
-
0
votes2
answers24
viewsA: Rendering with v-for
Missing the Tag template <template> <table class="table-striped" id="productsTable"> <thead> <tr> <th>Nome</th> <th>Preço</th>…
-
0
votes2
answers668
viewsA: How to use filters in vuejs for data collections?
You can use the js filter function solution: https://jsfiddle.net/hogryj96/32/ <div id="app"> <select @change="changeSelect"> <option>Listar todos</option> <option…
-
1
votes1
answer140
viewsA: Calling VUE function through another Iframe
you can use postMessage, example: iframe - > function handleButtonClick(e) { window.parent.postMessage('iframe_message') } página - > window.addEventListener('iframe_message', function() {…
-
0
votes1
answer331
viewsA: React Native request the api via navigation response
Transform the task component into a class, and use the WillMount component to call the API: export default class Tarefa extends Component { componentWillMount() { " 1 - ---->Chamada API AQUI" " 2…