最新文章
-
[Vue.js 3.0] Migration – Render Function API
# Render Function API breaking # Overview This change will not affect <template> users. Here is a quick summary of what has changed: h…… -
[Vue 3] 迁移指南 – attribute 强制行为
# attribute 强制行为 非兼容 信息 这是一个低级的内部 API 更改,不会影响大多数开发人员。 # 概览 下面是对这些变化的高层次总结: 删除枚举 attri…… -
[Vue.js 3.0] Migration – Props Default Function this Access
# Props Default Function this Access breaking Props default value factory functions no longer have access to this. Instead: Raw props receive…… -
[Android开发]Android 短信拦截
Android系统在收到短信的时候会发送一条有序广播,我们如果定义一个接收者接收这个广播,就可以得到短信内容,也可以拦截短信。 定义广播接收者接收广播andr…… -
[VScode教程] VSCode 面包屑
VSCode面包屑,叫做 Breadcrumb,翻译过来就是面包屑导航,主要是展示目前的代码在整个工程里的路径,同时你还能够看出这个代码所在位置的结构层级并且可以…… -
[Vue 3] 迁移指南 – $attrs 包括 class & style
# $attrs 包括 class & style 非兼容 # 概览 现在 $attrs 包含传递给组件的所有 attribute,包括 class 和 style。 # 2.x 行为 在 Vue 2 的虚拟 DO…… -
[Vue.js 3.0] Migration – $listeners removed
# $listeners removed breaking # Overview The $listeners object has been removed in Vue 3. Event listeners are now part of $attrs: { text: 'th…… -
-
[Android开发]Android 多线程断点下载
多线程下载 public class MultiThreadDownloader { private URL url; // 目标地址 private File file; // 本地文件 private long threadLen;…… -
[VScode教程] VSCode 小地图
VSCode小地图,细心的你可能已经发现了,在之前所有的截图里,我都把小地图关掉了(在查看菜单栏中可以打开或关闭小地图)。这是因为图片小,而小地图又比较…… -
[Vue 3] 迁移指南 – $children
# $children 移除 # 概览 $children 实例 property 已从 Vue 3.0 中移除,不再支持。 # 2.x 语法 在 2.x 中,开发者可以使用 this.$children 直接访问…… -
[Vue.js 3.0] Migration – KeyCode Modifiers
# KeyCode Modifiers breaking # Overview Here is a quick summary of what has changed: BREAKING: Using numbers, i.e. keyCodes, as v-on modifie…… -
[Vue.js 3.0] Migration – key attribute
# key attribute breaking # Overview NEW: keys are no longer necessary on v-if/v-else/v-else-if branches, since Vue now automatically generat…… -
[Vue 3] 迁移指南 – 自定义指令
# 自定义指令 非兼容 # 概览 The hook functions for directives have been renamed to better align with the component lifecycle. # 2.x 语法 在 Vu…… -
[Android开发]Android 反编译
反编译: 资源文件获取Apktool 按照官网的指示配置完成后,执行apktool命令 apktool d xxx.apk // 如果提示-bash: /usr/local/bin/apktool: Permission den…… -
[VScode教程] VSCode 单文件搜索
VSCode单文件搜索,今天我们重新回到原点,来看一下如何使用编辑器自带的文本搜索功能,快速地穿梭于海量的代码之中。在我看来,一个功能丰富且快速的搜索,在…… -
[Vue.js 3.0] Migration – Inline Template Attribute
# Inline Template Attribute breaking # Overview Support for the inline-template feature(opens new window) has been removed. # 2.x Syntax In 2…… -
[Vue 3] 迁移指南 – 自定义元素交互
# 自定义元素交互 非兼容 # 概览 非兼容:自定义元素白名单现在在模板编译期间执行,应该通过编译器选项而不是运行时配置来配置。 非兼容:特定 is p…… -
-
[Android开发]Android 黑名单挂断电话及删除电话记录
黑名单挂断电话及删除电话记录: 挂断电话 挂断电话需要申请权限android.permission.CALL_PHONE 对于黑名单号码的来电如何挂断,由于监听来电时在TelephonyM…… -
[VScode教程] VSCode 单文件替换
VSCode单文件替换,在搜索到我们想要的结果之后,我们可以直接在文件中进行修改,也可以使用替换窗口进行批量替换。如果你在使用鼠标或者是触控板的话,只需按…… -
[Vue 3] 迁移指南 – Data 选项
# Data 选项 非兼容 # 概览 非兼容:data 组件选项声明不再接收纯 JavaScript object,而需要 function 声明。 当合并来自 mixin 或 extend 的多个 d…… -
[Vue.js 3.0] Migration – Global API Treeshaking
# Global API Treeshaking breaking # 2.x Syntax If you’ve ever had to manually manipulate DOM in Vue, you might have come across this pattern: …… -
[Vue 3] 迁移指南 – emits Option
# emits Option 新增 # Overview Vue 3 now offers an emits option, similar to the existing props option. This option can be used to define the e…… -
[Vue.js 3.0] Migration – Global API
# Global API breaking Vue 2.x has a number of global APIs and configurations that globally mutate Vue’s behavior. For instance, to register a g……