您好,登錄后才能下訂單哦!
這篇文章給大家介紹使用vue.js怎么實現點擊按鈕動態添加li標簽,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
如下所示:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <script type="text/javascript" src="js/vue.js" ></script> </head> <body> <div id="todo-list-example"> <button v-on:click="ss">保存 </button> <ul> <li is="todo-item" v-for="(todo, index) in todos" v-text="sv" v-on:click="hh"></li> </ul> </div> </body> <script> Vue.component('todo-item', { template: ` <li v-on:click="$emit('click')"> {{ text }} </li>`, props: ['text'] }) new Vue({ el: '#todo-list-example', data: { todos: [ '+添加' ], sv:'+添加' }, methods: { ss: function() { this.todos.push(this.sv) }, hh:function(){ alert(1) } } }) </script> </html>
關于使用vue.js怎么實現點擊按鈕動態添加li標簽就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。