上一页 1 2 3 4 5 6 7 8 9 ··· 25 下一页
摘要: 图片优化 <img src="image.jpg" loading="lazy" alt=""> lazy 延迟加载图像,直到它和视口接近到一个计算得到的距离,由浏览器定义。 可以直接在img mdn 中查看 滑动注册动态 https://dev.to/haycuoilennao19/22-slid 阅读全文
posted @ 2021-04-20 00:26 猫神甜辣酱 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 创建控制器 模块 nest g mo user 控制器 nest g co user 服务 nest g s user @Request() req @Res() res @Next() next @Session() 这个不懂 @Param(key?:string) req.params/req. 阅读全文
posted @ 2021-04-17 01:49 猫神甜辣酱 阅读(298) 评论(0) 推荐(1) 编辑
摘要: 插件合集 IDEA Mind Map 思维导图 Atom Material Icons 图标 Indent RainBow 彩虹空格 Material Theme UI 主题 Rainbow Brackets 括号 Random Background 随机背景 Nyan Progress Bar 彩 阅读全文
posted @ 2021-04-12 00:25 猫神甜辣酱 阅读(366) 评论(0) 推荐(0) 编辑
摘要: Vux复习一(基础) Vue复习二(渲染函数) Vue复习三(路由) Vue复习四(vue-api) Vue复习五(vuex) Vue复习六(vue-cli/axios) 阅读全文
posted @ 2021-02-11 20:33 猫神甜辣酱 阅读(243) 评论(2) 推荐(3) 编辑
摘要: 基础 axios.get('/user?ID=12345') .then(function (response) { // 成功 console.log(response); }) .catch(function (error) { // 失败 console.log(error); }) .the 阅读全文
posted @ 2021-02-11 20:24 猫神甜辣酱 阅读(76) 评论(0) 推荐(0) 编辑
摘要: vuex 状态管理模块 import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex) export const store = new Vuex.Store({ state: { count: 0, num:2 }, mutations: { 阅读全文
posted @ 2021-02-11 20:22 猫神甜辣酱 阅读(128) 评论(0) 推荐(0) 编辑
摘要: keyCodes 添加全局自定义键位别名(给v-on添加) Vue.config.keyCodes = { v: 86, f1: 112, // camelCase 不可用 mediaPlayPause: 179, // 取而代之的是 kebab-case 且用双引号括起来 "media-play- 阅读全文
posted @ 2021-02-11 20:21 猫神甜辣酱 阅读(186) 评论(0) 推荐(0) 编辑
摘要: https://router.vuejs.org/zh/installation.html <router-link to="/foo">Go to Foo</router-link> <router-view></router-view> 动态ID /one/:id this.$route.par 阅读全文
posted @ 2021-02-11 20:19 猫神甜辣酱 阅读(343) 评论(0) 推荐(0) 编辑
摘要: 渲染函数 render createElement(" 定义的元素 ",{ 元素的性质 }," 元素的内容"/[元素的内容]) // @returns {VNode} createElement( // {String | Object | Function} // 一个 HTML 标签名、组件选项 阅读全文
posted @ 2021-02-11 20:16 猫神甜辣酱 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 计算属性 computed: { getName: { // 查询 get(){ return this.firstName+this.lastName }, // 就是 this.getName='xxx' 会触发这个方法 set(newval) { this.firstName=newval; 阅读全文
posted @ 2021-02-11 20:08 猫神甜辣酱 阅读(279) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 25 下一页