案例--vue_todolist

2024-03-19 16:18

本文主要是介绍案例--vue_todolist,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

封装--localStorage本地化存储[持久化]

封装--localStorage本地化存储[持久化]_tby_pr的博客-CSDN博客


js

const store = new Store;
const key = ['todolist', 'donelist']
//初始化数据
store.set(key[0], [])
store.set(key[1], [])const vm = new Vue({el: '#root',data: {//用户输入的内容cnt: '',//全选按钮all: false,//两个列表todolist: store.get(key[0]) || [],donelist: store.get(key[1]) || [],//两个列表的显示todo: true,done: false,//关键词keyword: ['admin', '小明', '小刚']},methods: {//切换显示toggle() {this.todo = true;this.done = false},toggle1() {this.todo = false;this.done = true},//批量添加按钮                add_all() {this.todolist = store.get(key[0])this.donelist = store.get(key[1])//加入之前判断一下是否有数据if (this.todolist.length) {this.todolist.forEach(item => this.donelist.push(item))store.set(key[1], this.donelist)this.todolist = []store.set(key[0], this.todolist)} else {alert('请先添加数据!')}},// 添加submit(ev) {//输入的内容不呢个超过10个,不能少于2个if (this.cnt.length < 2 || this.cnt.length >= 10) return alert('输入内容不能超过10个不能少于2个!!!')// 敏感词不可以提交!!!!!!!!!!!!!!!!!!!!!!!!const req = this.keyword.some(item => {return this.cnt.indexOf(item) !== -1})if (req) {alert('输入内容包含关键词,请重新输入!')} else {this.todolist = store.get(key[0])this.todolist.push({ id: Date.now(), name: this.cnt })store.set(key[0], this.todolist)this.cnt = ''}},// 删除按钮del(ev) {this.todolist = this.todolist.filter((item) => {return item.id !== ev.target.id - 0})store.set(key[0], this.todolist)this.donelist = this.donelist.filter((item) => {return item.id !== ev.target.id - 0})store.set(key[1], this.donelist)},//todolist 里面的已完成按钮finish(ev) {const arr = this.todolist.filter((item) => {return item.id === ev.target.id - 0})console.log(arr);this.todolist = this.todolist.filter((item) => {return item.id !== ev.target.id - 0})store.set(key[0], this.todolist)this.donelist = store.get(key[1])this.donelist.push(arr[0])store.set(key[1], this.donelist)},//donelist 里面的未完成按钮unfinish(ev) {const arr = this.donelist.filter((item) => {return item.id === ev.target.id - 0})this.donelist = this.donelist.filter((item) => {return item.id !== ev.target.id - 0})store.set(key[1], this.donelist)this.todolist = store.get(key[0])this.todolist.push(arr[0])store.set(key[0], this.todolist)}},
})

html

<div id="root"><ul><li @click="toggle()">todo</li><li @click="toggle1()">done</li></ul><ol v-show="todo"><!-- 输入框 --><input type="text" v-model.trim="cnt" @keyup.enter="submit" placeholder="请输入内容"><input type="checkbox" v-model="all" class="all">全选<button v-show='all' @click="add_all">批量添加已完成</button><li v-for="(item,key,index) in todolist"><input type="checkbox" v-model="all" :id="item.id">{{item.name}}<button :id="item.id" @click="del">删除</button><button :id="item.id" @click="finish">已完成</button></li></ol><ol v-show="done" style="margin-top: 60px;"><li v-for="(item,key,index) in donelist"><input type="checkbox">{{item.name}}<button :id="item.id" @click="del">删除</button><button :id="item.id" @click="unfinish">未完成</button></li></ol>
</div>

css

* {margin: 0;padding: 0;
}
ul,ol,li {list-style: none;
}
#root {width: 400px;min-height: 300px;border: 1px solid #333;margin: 100px auto;
}
ul>li {float: left;width: 199px;text-align: center;height: 40px;font-size: 24px;border-bottom: 1px solid #333;border-right: 1px solid #333;
}
ol {width: 100%;min-height: 258px;margin-top: 20px;
}
input[type="text"] {width: 90%;height: 30px;margin: 20px;padding-left: 14px;
}
.all {margin-left: 20px;
}
ol>li {min-width: 90%;height: 40px;padding-left: 20px;
}

这篇关于案例--vue_todolist的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/826563

相关文章

Python将博客内容html导出为Markdown格式

《Python将博客内容html导出为Markdown格式》Python将博客内容html导出为Markdown格式,通过博客url地址抓取文章,分析并提取出文章标题和内容,将内容构建成html,再转... 目录一、为什么要搞?二、准备如何搞?三、说搞咱就搞!抓取文章提取内容构建html转存markdown

在React中引入Tailwind CSS的完整指南

《在React中引入TailwindCSS的完整指南》在现代前端开发中,使用UI库可以显著提高开发效率,TailwindCSS是一个功能类优先的CSS框架,本文将详细介绍如何在Reac... 目录前言一、Tailwind css 简介二、创建 React 项目使用 Create React App 创建项目

vue使用docxtemplater导出word

《vue使用docxtemplater导出word》docxtemplater是一种邮件合并工具,以编程方式使用并处理条件、循环,并且可以扩展以插入任何内容,下面我们来看看如何使用docxtempl... 目录docxtemplatervue使用docxtemplater导出word安装常用语法 封装导出方

springboot循环依赖问题案例代码及解决办法

《springboot循环依赖问题案例代码及解决办法》在SpringBoot中,如果两个或多个Bean之间存在循环依赖(即BeanA依赖BeanB,而BeanB又依赖BeanA),会导致Spring的... 目录1. 什么是循环依赖?2. 循环依赖的场景案例3. 解决循环依赖的常见方法方法 1:使用 @La

Vue中组件之间传值的六种方式(完整版)

《Vue中组件之间传值的六种方式(完整版)》组件是vue.js最强大的功能之一,而组件实例的作用域是相互独立的,这就意味着不同组件之间的数据无法相互引用,针对不同的使用场景,如何选择行之有效的通信方式... 目录前言方法一、props/$emit1.父组件向子组件传值2.子组件向父组件传值(通过事件形式)方

css中的 vertical-align与line-height作用详解

《css中的vertical-align与line-height作用详解》:本文主要介绍了CSS中的`vertical-align`和`line-height`属性,包括它们的作用、适用元素、属性值、常见使用场景、常见问题及解决方案,详细内容请阅读本文,希望能对你有所帮助... 目录vertical-ali

浅析CSS 中z - index属性的作用及在什么情况下会失效

《浅析CSS中z-index属性的作用及在什么情况下会失效》z-index属性用于控制元素的堆叠顺序,值越大,元素越显示在上层,它需要元素具有定位属性(如relative、absolute、fi... 目录1. z-index 属性的作用2. z-index 失效的情况2.1 元素没有定位属性2.2 元素处

Python实现html转png的完美方案介绍

《Python实现html转png的完美方案介绍》这篇文章主要为大家详细介绍了如何使用Python实现html转png功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 1.增强稳定性与错误处理建议使用三层异常捕获结构:try: with sync_playwright(

Vue 调用摄像头扫描条码功能实现代码

《Vue调用摄像头扫描条码功能实现代码》本文介绍了如何使用Vue.js和jsQR库来实现调用摄像头并扫描条码的功能,通过安装依赖、获取摄像头视频流、解析条码等步骤,实现了从开始扫描到停止扫描的完整流... 目录实现步骤:代码实现1. 安装依赖2. vue 页面代码功能说明注意事项以下是一个基于 Vue.js

CSS @media print 使用详解

《CSS@mediaprint使用详解》:本文主要介绍了CSS中的打印媒体查询@mediaprint包括基本语法、常见使用场景和代码示例,如隐藏非必要元素、调整字体和颜色、处理链接的URL显示、分页控制、调整边距和背景等,还提供了测试方法和关键注意事项,并分享了进阶技巧,详细内容请阅读本文,希望能对你有所帮助...