这篇文章主要讲解了“Vue实现记事本功能实例”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Vue实现记事本功能实例”吧!
本文实例为大家分享了Vue实现记事本功能的具体代码,供大家参考,具体内容如下
实例功能点不多,主要难点在于笔记文本对象数组的添加,删除,以及对组件的绑定同步事件。
核心代码
<section id="todoapp">
<!-- 输入框 -->
<header class="header">
<h2>记事本</h2>
<input
v-model="note"
autofocus="autofocus"
autocomplete="off"
placeholder="请输入任务"
class="new-todo"
/>
<div >
<button value="记录" @click="addnote">记录</button>
</div>
</header>
<!-- 列表区域 -->
<section class="main">
<ul class="todo-list">
<li class="todo" v-for="(n,index) in notes">
<div class="view">
<span class="index">{{index+1}}</span> <label>{{n}}</label>
<button class="destroy"></button>
</div>
</li>
</ul>
</section>
<!-- 统计和清空 -->
<footer class="footer">
<span class="todo-count"><strong>{{notes.length}}</strong> items left </span>
<button class="clear-completed" @click="delnote">
Clear
</button>
</footer>
</section>
<script>
let vue = new Vue({
el:"#todoapp",
data:{
note:"好好学习,天天向上",
index:0,
notes:[
"写代码",
"吃饭饭",
"睡觉觉"
]
},
methods:{
addnote:function () {
this.notes.push(this.note);
},
delnote:function () {
this.notes = [];
}
}
});
</script>
感谢各位的阅读,以上就是“Vue实现记事本功能实例”的内容了,经过本文的学习后,相信大家对Vue实现记事本功能实例这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是天达云,小编将为大家推送更多相关知识点的文章,欢迎关注!