查看“Vue 小黑记事本 隐藏”的源代码
←
Vue 小黑记事本 隐藏
跳到导航
跳到搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看和复制此页面的源代码。
https://www.bilibili.com/video/BV12J411m7MG/?p=23 === 实现功能分析 === # 没有数据时,隐藏元素(<u>v-show</u> <u>v-if</u> <u>数组非空</u>) === 完整代码 === <syntaxhighlight lang="html"> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>v-model 指令</title> </head> <body> <!--主体区域--> <section id="todoapp"> <!--输入框--> <header class="header"> <h1>小黑记事本</h1> <input autofocus="autofocus" autocomplete="off" placeholder="请输入任务" class="new-todo" v-model="inputValue" @keyup.enter="add"/> </header> <!--列表区域--> <section class="main"> <ul class="todo-list"> <li class="todo" v-for="(item, index) in list"> <div class="view"> <span class="index">{{ index+1 }}</span> <label>{{ item }}</label> <button class="destroy" @click="remove(index)">x</button> </div> </li> </ul> </section> <!--统计和清空--> <footer class="footer" v-show="list.length>0"> <span class="todo-count" v-if="list.length > 0"> <strong>{{ list.length }}</strong> items left </span> <button v-show="list.length>0" class="clear-completed" @click="clear"> Clear </button> </footer> </section> <!--底部--> <footer class="info"></footer> <!-- 开发环境版本,包含了有帮助的命令行警告 --> <script src="vue.js"></script> <script> var app = new Vue({ el:"#todoapp", data: { message:"hello world", list:[ "写代码","吃饭饭","睡觉觉" ], inputValue:"好好学习,天天向上" }, methods:{ add: function(){ this.list.push(this.inputValue); }, remove: function(index){ console.log("删除"); console.log(index); this.list.splice(index, 1); }, clear: function() { this.list = []; } } }) </script> </body> </html> </syntaxhighlight> === 记事本小程序总结 === * 列表结构可以通过 <u>v-for</u> 指令结合数据生成 * <u>v-on</u> 结合事件修饰符可以对事件进行限制,比如 <u>.enter</u> * <u>v-on</u> 在绑定事件时可以传递自定义参数 * 通过 <u>v-model</u> 可以快速地设置和获取表单元素的值 * 基于数据的开发方式
返回至
Vue 小黑记事本 隐藏
。
导航菜单
个人工具
登录
名字空间
页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
导航
首页
Spring Boot 2 零基础入门
Spring Cloud
Spring Boot
设计模式之禅
VUE
Vuex
Maven
算法
技能树
Wireshark
IntelliJ IDEA
ElasticSearch
VirtualBox
软考
正则表达式
程序员精讲
软件设计师精讲
初级程序员 历年真题
C
SQL
Java
FFmpeg
Redis
Kafka
MySQL
Spring
Docker
JMeter
Apache
Linux
Windows
Git
ZooKeeper
设计模式
Python
MyBatis
软件
数学
PHP
IntelliJ IDEA
CS基础知识
网络
项目
未分类
MediaWiki
镜像
问题
健身
国债
英语
烹饪
常见术语
MediaWiki帮助
工具
链入页面
相关更改
特殊页面
页面信息