bigao 的文章
-
-
-
-
[Vue.js 3.0] Guide – Tooling – Single File Components
# Single File Components # Introduction In many Vue projects, global components will be defined using app.component(), followed by app.mount('#app…… -
[Vue.js 3.0] Guide – Tooling – Production Deployment
# Production Deployment INFO Most of the tips below are enabled by default if you are using Vue CLI(opens new window). This section is only releva…… -
-
[VScode教程] VSCode 撤销光标移动
VSCode 撤销光标移动,撤销光标的移动和选择。有的时候你移动完光标之后,又希望把光标回退到上一个位置,这时你只需按下 “Cmd + U”(Windows 上是 “Ctrl + …… -
[Vue.js 3.0] Guide – Accessibility – Resources
# Resources # Documentation WCAG 2.0(opens new window) WCAG 2.1(opens new window) Accessible Rich Internet Applications (WAI-ARIA) 1.2(opens ne…… -
mac用Remote Desktop 远程连接windows服务器,拷贝文件问题
如标题: 从mac可以拷贝文字到windows,但是拷贝文件(如:.class文件) 就不行。 网上有说用两个qq传的。 网上还有说:在Remote De... -
[Vue.js 3.0] Cookbook – Debugging in VS Code
# Debugging in VS Code Every application reaches a point where it's necessary to understand failures, small to large. In this recipe, we explore a …… -
[Android开发]Android Fragment
Android Fragment A Fragment is a piece of an application’s user interface or behavior that can be placed in an Activity. Interaction with fragment…… -
[VScode教程] VSCode 代码缩进
VSCode 代码缩进,有的时候,你会觉得代码格式化太重了,需要的可能只是把代码里的缩进调整一下。这时你可以打开命令面板(快捷键“Cmd + Shift + P”),搜索…… -
[Android开发]Android JNI基础
将java中的字符串转换成C中字符串的工具方法 char* Jstring2CStr(JNIEnv* env, jstring jstr){ char* rtn = NULL; jclass clsstring = …… -
[Android开发]Android Parcelable及Serializable
Serializable的作用是为了保存对象的属性到本地文件、数据库、网络流、rmi以方便数据传输, 当然这种传输可以是程序内的也可以是两个程序间的。而Parcelable…… -
[VScode教程] VSCode 文本编辑
VS Code文本编辑,在 VS Code中,我们除了能够使用鼠标来选择文本以外,还能够使用鼠标对文本进行一定程度的修改,我们把它称为拖放功能(drag and drop)。…… -
[VScode教程] VSCode 代码跳转和链接
VS Code代码跳转和链接, 除了能够使用鼠标进行代码选择、编辑、预览之外,我们还可以借助鼠标来完成跳转操作。不知道你还记得我们之前讲的文件、代码跳转相…… -
[Vue3 API] – 生命周期钩子
# 生命周期钩子 注意 所有的生命周期钩子自动绑定 this 上下文到实例中,因此你可以访问数据,对 property 和方法进行运算。这意味着你不能使用箭头函数来定…… -
[Vue.js 3.0] Migration – v-for Array Refs
# v-for Array Refs breaking In Vue 2, using the ref attribute inside v-for will populate the corresponding $refs property with an array of refs…… -
[Android开发]Android WebView
在Android中有WebView Widget,它内置了WebKit引擎,同时,WebKit也是Mac OS X的Safari网页浏览器的基础。WebKit是一个开源的浏览器引擎,Chrome浏览器也是…… -
[Vue.js 3.0] Migration – Attribute Coercion Behavior
# Attribute Coercion Behavior breaking Info This is a low-level internal API change and does not affect most developers. # Overview Here is …… -
[Vue.js 3.0] Migration – $attrs includes class & style
# $attrs includes class & style breaking # Overview $attrs now contains all attributes passed to a component, including class and style. …… -
[Vue.js 3.0] Migration – v-bind Merge Behavior
# v-bind Merge Behavior breaking # Overview BREAKING: Order of bindings for v-bind will affect the rendering result. # Introduction When d…… -
[Vue3 API] – Computed 与 watch
# Computed 与 watch 本节例子中代码使用的单文件组件语法 # computed 使用 getter 函数,并为从 getter 返回的值返回一个不变的响应式 ref 对象。 cons…… -
ES继承 – ECMAScript 继承机制实现
ECMAScript 继承机制实现 继承机制的实现 要用 ECMAScript 实现继承机制,您可以从要继承的基类入手。所有开发者定义的类都可作为基类。出于安全原因,本地类…… -
[VScode教程] VSCode 如何管理文件和文件夹
VS Code是如何管理文件和文件夹,首先需要说明的是,VS Code 的各个功能,都是基于当前打开的文件或者文件夹的。 该怎么去理解这个概念呢?如果你使用过 IDE……