1.4k 词
计算属性 #modifyname input[type='text'] { width: 50px; } 计算属性# 概念:基于 现有的数据 ,计算出来的 新属性 。依赖的数据变化,自动重新计算 语法: 声明在 computed配置项 (与data/methods等同列) 中,一...
763 词
v-model拓展应用 #studyapp textarea { resize: none; padding: 10px; width: 50%; height: 100px; } v-model拓展应用# 常见的表单元素都可以用 v-model 绑定关联--快速 获取或设置 表单元素的值 它会根据 ...
1.2k 词
v-bind增强样式控制 .div1 .inner { display: inline-block; width: 50px; height: 50px; border: 1px solid #000; vertical-align: top; } .pink { background-color: pink; } .big { width: 100px; height: 100px; } /* 京东秒杀tab */ ...
957 词
指令修饰符 .father { width: 100px; height: 100px; background-color: pink; } .son { width: 50px; height: 50px; background-color: skyblue; } 指令修饰符# 通过 "." 指明一些指令 后缀 ...
3.4k 词
Vue指令 Vue指令# Vue会根据不同的 指令 ,针对标签实现不同的 功能 。 指令:带有 v- 前缀 的特殊 标签属性 例如: <!-- Vue指令:v-前缀的标签属性 --> <div v-html="str"></div>...
1.4k 词
Vue初体验 Vue快速上手# Vue 是一个用于 构建用户界面 (基于数据渲染出用户看到的页面) 的 渐进式 (循序渐进) 框架 渐进式:Vue.js核心包(声明时渲染--组件系统)--Vue插件(客户端路由VueRouter--大规模状态管理Vuex)--工程化开发(构建工具Webpack/Vite) 框架:一套完整的项目解决方案 Vu...
78 词
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick Start#Create a new post#1$ hexo new "My New Post" More info: Writing Run server#1$ hexo server More info: Server Generate static files#1$ hexo generate More info: Generating Deploy to remote sites#1$ hexo deploy More info: Deployment
git
1.1k 词
Git远程仓库 Git远程仓库# 概念:托管在因特网或其他网络中的项目的 版本库 作用:保存版本库的历史记录,多人协作 创建:公司自己的服务器/第三方托管平台(Gitee,GitLab,GitHub...) 推送# 需求:创建远程版本库,并把本地Git仓库推送上去保存 步骤: 注册第三方托管平台网站账号 ...