Vue.js實(shí)現(xiàn)一個(gè)todo-list的上移下移刪除功能
如圖,A simple todo-list長(zhǎng)這樣

這是一個(gè)基于vue.js的一個(gè)簡(jiǎn)單的todo-list小demo。首先要實(shí)現(xiàn)添加非空l(shuí)ist,點(diǎn)擊list切換finished狀態(tài)這樣的一個(gè)效果,推薦學(xué)習(xí)地址---->點(diǎn)擊打開鏈接
接下來(lái)是實(shí)現(xiàn)的一個(gè)上移,下移,刪除的效果圖:

刪除效果:

講一下思路:
上移-----首先將鼠標(biāo)所指list的內(nèi)容插入到上一條上面,然后刪除鼠標(biāo)所指的list(也就是this.items[index]),運(yùn)行代碼便可實(shí)現(xiàn)上移的效果,或者將上下兩條list的內(nèi)容進(jìn)行調(diào)換也是可以的。
刪除-----這里和上下移一樣,主要是用到了操作數(shù)組的splice這個(gè)方法,既可以添加也可以刪除,不懂的去補(bǔ)一下
小二~上代碼:
----App.vue----
<div><input v-model="newItem" v-on:keyup.enter="addNew"></div>
<div class="box-center">
<ul class="box-list">
<li v-for="item ,index in items" v-bind:class="{finished:item.isfinished}"
v-on:mouseover="moveBtn(item)" v-on:mouseout="leaveBtn(item)">
<span v-on:click="toggleFinished(item)" v-bind:class="{bgYellow:item.isBgyellow}">{{item.label}}</span>
<span class="list-btn" v-show="item.isShow">
<button v-on:click="moveUp(index,item)">上移</button>
<button v-on:click="moveDown(index,item)">下移</button>
<button v-on:click="deleteBtn(index)">刪除</button>
</span>
</li>
</ul>
t;/div>
----Store.js----
const STORAGE_KEY = 'todos-vuejs'
export default {
fetch () {
return JSON.parse(window.localStorage.getItem(
STORAGE_KEY) || '[]')
},
save (items) {
window.localStorage.setItem(STORAGE_KEY,JSON.stringify(
items))
}
}
----App.vue----
<span style="font-size:14px;"><script>
import Store from './store'
export default {
data: function() {
return {
title: 'A simple todo-list',
items: Store.fetch(),
newItem: '',
msg:'點(diǎn)擊按鈕',
isShow: false,
isBlock: true,
isBgyellow: false,
leftPx:0,
topPx:0
}
},
watch: {
items: {
handler: function(items) {
Store.save(items)
},
deep: true
}
},
methods: {
toggleFinished: function(item) {
item.isfinished = !item.isfinished
},
show:function ($event) {
$event.cancelBubble=true;
this.isBlock = false;
this.topPx = ($event.clientY);
this.leftPx = ($event.clientX);
},
stop:function(event){
this.isBlock = true;
},
moveBtn:function(item) {
// console.log(item.label)
item.isShow = true;
},
leaveBtn:function(item) {
item.isShow = false;
},
addNew: function() {
//非空才可以添加
if(this.newItem!=''){
this.items.push({
label: this.newItem,
isfinished: false
})
}
this.newItem = '';
},
moveUp:function(index,item) {
//在上一項(xiàng)插入該項(xiàng)
this.items.splice(index-1,0,(this.items[index]));
//刪除后一項(xiàng)
this.items.splice(index+1,1);
item.isShow = false;
if(index == 0) {
alert("到頂啦!");
}
},
moveDown:function(index,item) {
//在下一項(xiàng)插入該項(xiàng)
this.items.splice(index+2,0,(this.items[index]));
// 刪除前一項(xiàng)
this.items.splice(index,1);
item.isShow = false;
if(index == this.items.length-1) {
alert("已經(jīng)是最后一項(xiàng)啦!");
}
},
deleteBtn:function(index) {
this.items.splice(index,1);
}
},
}
</script></span><span style="font-size: 18px;">
</span>
套路就是在html中插入方法或者class,methods中對(duì)數(shù)據(jù)進(jìn)行操作~
總結(jié):
這是本小白入門vue.js學(xué)習(xí)的第一個(gè)demo,有一些jQuery的觀念不能很好的轉(zhuǎn)變,總是習(xí)慣性的操作dom節(jié)點(diǎn),殊不知vue可以有更好的方式去實(shí)現(xiàn)
以上所述是小編給大家介紹的Vue.js實(shí)現(xiàn)一個(gè)todo-list的上移下移刪除功能,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!
- vue3實(shí)現(xiàn)一個(gè)todo-list
- vue組件編寫之todolist組件實(shí)例詳解
- 使用Vue完成一個(gè)簡(jiǎn)單的todolist的方法
- vue實(shí)現(xiàn)留言板todolist功能
- 詳解Vue的computed(計(jì)算屬性)使用實(shí)例之TodoList
- 基于vuejs實(shí)現(xiàn)一個(gè)todolist項(xiàng)目
- vue實(shí)現(xiàn)todolist單頁(yè)面應(yīng)用
- vue實(shí)現(xiàn)ToDoList簡(jiǎn)單實(shí)例
- vue3組合式API實(shí)現(xiàn)todo列表效果
相關(guān)文章
vue中使用極驗(yàn)驗(yàn)證碼的方法(附demo)
這篇文章主要介紹了vue中使用極驗(yàn)驗(yàn)證碼的方法(附demo)本文通過實(shí)例代碼給大家介紹的非常詳細(xì),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2019-12-12
avue實(shí)現(xiàn)自定義搜索欄及清空搜索事件的實(shí)踐
本文主要介紹了avue實(shí)現(xiàn)自定義搜索欄及清空搜索事件的實(shí)踐,主要包括對(duì)搜索欄進(jìn)行自定義,并通過按鈕實(shí)現(xiàn)折疊搜索欄效果,具有一定的參考價(jià)值,感興趣的可以了解一下2021-12-12
vue中動(dòng)態(tài)控制btn的disabled屬性方式
這篇文章主要介紹了vue中動(dòng)態(tài)控制btn的disabled屬性方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2022-04-04
vue3中el-uplod結(jié)合ts實(shí)現(xiàn)圖片粘貼上傳
本文主要介紹了vue3中el-uplod結(jié)合ts實(shí)現(xiàn)圖片粘貼上傳,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2024-07-07
Vue中created和mounted使用場(chǎng)景分析
vue.js中created方法是一個(gè)生命周期鉤子函數(shù),一般可以在created函數(shù)中調(diào)用ajax獲取頁(yè)面初始化所需的數(shù)據(jù),這篇文章主要介紹了Vue中created和mounted使用場(chǎng)景分析,需要的朋友可以參考下2023-05-05
vue3安裝vant實(shí)現(xiàn)按需引入和全局引入
本文主要介紹了vue3安裝vant實(shí)現(xiàn)按需引入和全局引入,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2023-04-04
Element 的 el-table 表格實(shí)現(xiàn)單元格合并功能
這篇文章主要介紹了Element 的 el-table 表格實(shí)現(xiàn)單元格合并功能,本文通過示例代碼給大家介紹的非常詳細(xì),感興趣的朋友一起看看吧2024-07-07
vue v-model實(shí)現(xiàn)自定義樣式多選與單選功能
這篇文章主要介紹了vue v-model實(shí)現(xiàn)自定義樣式多選與單選功能所遇到的問題,本文給大家?guī)?lái)了解決思路和實(shí)現(xiàn)代碼,需要的朋友可以參考下2018-07-07

