因为OS X EI Capitan 后磁盘工具界面变化比较大,所以以下教程只适用于Mac OS X 10.11或以上系统,若是10.10.5或以下的安装方法请参考这里 https://www.applex.net/threads/55708/ MacOS...
TransMac Win系统下制作 OS X启动盘图文教程超详细小白版(附镜像下载)
如果你苹果电脑系统崩溃了,身边刚好又没有苹果电脑做启动盘,那在win系统制作一个苹果启动盘是你最好的选择,之所以说是小白版 是因为制作过程每个环境都记录下来方便不熟悉的. ...
windows 10无法打开磁盘和文件夹 没有与之对应的应用
下载Directory、Drive、Folder后正常 File Association Fixes for Windows 10 (Defaults) Here is the list of file association fixes (Windows defaults) for some of the common file types. These fixes ar...
vuejs filters收集
filters:{ date(str,format){ let date = new Date(); date.setTime(str*1000); return format .replace('YYYY', `${date.ge...
vuejs filter中输出html
解决方法 使用全局方法 使用 computed 属性 使用 $options.filters :inner-html.prop 使用全局方法 put your highlight into methods, and v-html="highlight(option.title)" 也可以在 Vue 上...
Responsive image map
https://stackoverflow.com/questions/7844399/responsive-image-map
Better SVG Fallback and Art Direction With The Element
Besides using an SVG as a background image in CSS, you can serve SVG foreground images in HTML using one of several embedding techniques, each of which has its advantages and use cases. Unless you...
apache rewrite中文问题
RewriteRule ^star/(.*)$ phpinfo.php?a=$1 [QSA,L,B] 这条规则有些中文无法匹配,出现404问题,无法匹配的中文中包含%85,0085在ansi中为换行符,而.匹配除换行的任何字符,要换成以下这条 RewriteRule ^star/([...
vuejs先请求数据再渲染模板
async created() { await this.fetch(); } 可以解决data改一次其他函数重新调用一次
Promise和Async/Await用法整理
1.Promise 1.简介 Promise,简单来说就是一个容器,里面保存着某个未来才会结束的时间(通常是一个异步操作的结果) Promise对象的基本语法: new Promise((resolve,reject) => { //..... }); 从语法上来...