분류 | 게시판 |
베스트 |
|
유머 |
|
이야기 |
|
이슈 |
|
생활 |
|
취미 |
|
학술 |
|
방송연예 |
|
방송프로그램 |
|
디지털 |
|
스포츠 |
|
야구팀 |
|
게임1 |
|
게임2 |
|
기타 |
|
운영 |
|
임시게시판 |
|
옵션 |
|
출처 | ======================================= <HTML> <head> <script src="https://unpkg.com/[email protected]/dist/vue.js"></script> <script> var inner = ""; function init(){ asdf = new Vue({el: '#Search', data: { articles: []}}); inner = document.getElementById("Search").innerHTML; } function search2(){ // for( ;asdf.articles.length > 0;){ // asdf.articles.pop() // } var a = new Array([{"a":"c1", "b" : "c2"}]) asdf.articles.concat(a) console.log(asdf.articles) } function search1(){ for( ;asdf.articles.length > 0;){ asdf.articles.pop() } asdf.articles.push({"a":"a1", "b" : "b1"}) } </script> </head> <body onload="init()"> <button onclick="search1()">---1---</button> <button onclick="search2()">---2---</button> <Div class="Search" id="Search"> <table > <tr> <th>a</th> <th>b</th> </tr> <tr v-for="article in articles" > <td>{{article.a}}</td> <td>{{article.b}}</td> </tr> </table> </Div> </body> </HTML> |
죄송합니다. 댓글 작성은 회원만 가능합니다.