摘要:
图片优化 <img src="image.jpg" loading="lazy" alt=""> lazy 延迟加载图像,直到它和视口接近到一个计算得到的距离,由浏览器定义。 可以直接在img mdn 中查看 滑动注册动态 https://dev.to/haycuoilennao19/22-slid 阅读全文
摘要:
创建控制器 模块 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. 阅读全文
摘要:
插件合集 IDEA Mind Map 思维导图 Atom Material Icons 图标 Indent RainBow 彩虹空格 Material Theme UI 主题 Rainbow Brackets 括号 Random Background 随机背景 Nyan Progress Bar 彩 阅读全文
摘要:
Vux复习一(基础) Vue复习二(渲染函数) Vue复习三(路由) Vue复习四(vue-api) Vue复习五(vuex) Vue复习六(vue-cli/axios) 阅读全文
摘要:
基础 axios.get('/user?ID=12345') .then(function (response) { // 成功 console.log(response); }) .catch(function (error) { // 失败 console.log(error); }) .the 阅读全文
摘要:
vuex 状态管理模块 import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex) export const store = new Vuex.Store({ state: { count: 0, num:2 }, mutations: { 阅读全文
摘要:
keyCodes 添加全局自定义键位别名(给v-on添加) Vue.config.keyCodes = { v: 86, f1: 112, // camelCase 不可用 mediaPlayPause: 179, // 取而代之的是 kebab-case 且用双引号括起来 "media-play- 阅读全文
摘要:
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 阅读全文
摘要:
渲染函数 render createElement(" 定义的元素 ",{ 元素的性质 }," 元素的内容"/[元素的内容]) // @returns {VNode} createElement( // {String | Object | Function} // 一个 HTML 标签名、组件选项 阅读全文
摘要:
计算属性 computed: { getName: { // 查询 get(){ return this.firstName+this.lastName }, // 就是 this.getName='xxx' 会触发这个方法 set(newval) { this.firstName=newval; 阅读全文