流浪のwolf

卷帝

导航

上一页 1 ··· 55 56 57 58 59 60 61 62 63 ··· 73 下一页

2022年10月17日

复用对评论和对文章回复的弹层 popup- vant2

摘要: 基本样式: ps:当message 即输入的内容的长度为 0 的时候,按钮禁止使用 ; <template> <div class="comment-post"> <van-field class="post-field" v-model="message" rows="2" autosize ty 阅读全文

posted @ 2022-10-17 11:07 流浪のwolf 阅读(126) 评论(0) 推荐(0) 编辑

评论内容组件

摘要: 基本样式 : <template> <van-cell class="comment-item"> <van-image slot="icon" class="avatar" round fit="cover" src="https://img.yzcdn.cn/vant/cat.jpeg" /> 阅读全文

posted @ 2022-10-17 10:37 流浪のwolf 阅读(41) 评论(0) 推荐(0) 编辑

2022年10月16日

封装 axios 拦截器

摘要: import axios from "axios"; // 自定义一个 request 实例 const request = axios.create({ baseURL: "https://some-domain.com/api/", timeout: 1000, headers: { "X-Cu 阅读全文

posted @ 2022-10-16 21:11 流浪のwolf 阅读(15) 评论(0) 推荐(0) 编辑

路由导航有哪几种?怎么跳转传参

摘要: 1. 声明式导航 目标: 可用全局组件router-link来替代a标签 ; 总结: 链接导航, 用router-link配合to, 实现点击切换路由 ; 特点: vue-router提供了一个全局组件 router-link router-link实质上最终会渲染成a链接 to属性等价于提供 hr 阅读全文

posted @ 2022-10-16 19:22 流浪のwolf 阅读(56) 评论(0) 推荐(0) 编辑

v-if 为什么不能和 v-for 一起使用 ?

摘要: 当 Vue 处理指令时,v-for 比 v-if 具有更高的优先级,通过v-if 移动到容器元素,不会再重复遍历列表中的每个值。取而代之的是,我们只检查它一次,且不会在 v-if 为否的时候运算 v-for v-if不能和v-for一起使用的原因是v-for的优先级比v-if高,一起使用会造成性能浪 阅读全文

posted @ 2022-10-16 19:07 流浪のwolf 阅读(566) 评论(0) 推荐(0) 编辑

vue 的常用指令以及作用 ·

摘要: 1、 v-model 多用于表单元素实现双向数据绑定(同 angular 中的 ng-model) 2、 v-for 格式: v-for="字段名 in(of) 数组 json" 循环数组或 json(同 angular 中的ng-repeat),需要注意从 Vue2 开始取消了$index 3、 阅读全文

posted @ 2022-10-16 19:04 流浪のwolf 阅读(51) 评论(0) 推荐(0) 编辑

forEach filter some map every 的区别

摘要: forEach 遍历数组,不会改变原数组,没有返回值 ; filter 过滤数组 相同点:都不改变原数组,都是数组的实例方法 ; 阅读全文

posted @ 2022-10-16 18:57 流浪のwolf 阅读(14) 评论(0) 推荐(0) 编辑

js的宏任务和微任务有哪些,是怎么执行的 ?

摘要: 事件循环有宏任务和微任务; 宏任务所处的队列就是宏任务队列,队列可以有多个,第一个队列只有一个任务就是执行主线程的js代码,剩余队列任务有setTimeout setInterval ;微任务所处的队列就是微任务队列,只能有一个队列,有process.nextTick() promise.then( 阅读全文

posted @ 2022-10-16 18:53 流浪のwolf 阅读(171) 评论(0) 推荐(0) 编辑

文章的评论 和 评论的恢复组件

摘要: 封装请求接口 : get 提交的query数据放在params里面(或者放在url?后面) /** * 文章评论 * 功能1: 获取文章的评论 * 》 type a 评论类型,a-对文章(article)的评论,c-对评论(comment)的回复 * > source 文章 id 源id,文章id或 阅读全文

posted @ 2022-10-16 18:47 流浪のwolf 阅读(54) 评论(0) 推荐(0) 编辑

markdown.css 设置文章的样式

摘要: 返回的详情文章内容是标签加内容文字,使用 markdown,css 渲染样式 : .markdown-body .octicon { display: inline-block; fill: currentColor; vertical-align: text-bottom; } .markdown 阅读全文

posted @ 2022-10-16 15:39 流浪のwolf 阅读(298) 评论(0) 推荐(0) 编辑

上一页 1 ··· 55 56 57 58 59 60 61 62 63 ··· 73 下一页