vue.js 实现点击按钮动态添加li的方法

今天小编就为大家分享一篇vue.js 实现点击按钮动态添加li的方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

如下所示:

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <script type="text/javascript" src="https://www.jb51.net/js/vue.js" ></script> </head> <body> <div> <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的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/d419e948df86b8faf40a596b070048fe.html