2021 王者荣耀 6 周年皮肤返场投票排行榜单查看 作者: Chuwen 时间: 2021-10-16 分类: 唠嗑闲聊 评论 ## 网址: https://nowtime.cc/pvp/ ![](https://cdn.nowtime.cc/2021/10/16/629880820.png)
Vue.js 组件 script 分离 作者: Chuwen 时间: 2021-10-14 分类: Vue.js 评论 ## 需要 通常情况下,在单 `.vue` 文件开发很方便,但是当业务逻辑起来了,那么经常需要修改 `script` 和 `template` 部分,用编辑器分屏也不是那么好操作,故有了**组件 script 分离** ## 例子 ### `TableList.vue` ```vue 测试 {{test}} ``` ### `index.js` > 在 `TableList.vue` 同级创建个如 `index.js` 文件 ```js export default { name: "TableList", components: { 'pagination': Pagination }, data(){ return { test: 'test' } } } ```
注册账号时,密码表单使浏览器提示建议的密码(现代主流浏览器 Chrome、Safari、Firefox 支持) 作者: Chuwen 时间: 2021-10-12 分类: HTML5 评论 ## 序言 常看到一些网站注册账号时,在密码表单浏览器会提示“建议安全系数高的密码” ![Google Chrome 建议安全系数高的密码](https://cdn.nowtime.cc/2021/10/12/3266488654.png) ![Google Chrome 使用建议的密码](https://cdn.nowtime.cc/2021/10/12/331558990.png) Google 上查阅了很多相关的资料,最终找到了相关用法: - https://www.chromium.org/developers/design-documents/form-styles-that-chromium-understands - https://developer.mozilla.org/zh-CN/docs/Web/HTML/Attributes/autocomplete - https://developer.mozilla.org/zh-CN/docs/Web/HTML/Element/Input#attr-autocomplete 主要靠的是 `autocomplete` 属性来实现 ![](https://cdn.nowtime.cc/2021/10/12/1906942924.png) ## 代码 > 请注意,必须使用 `http`/`https` 协议预览才有效果 ```html ```
解决 Spug 发布前任务出错: Exception: 'utf-8' codec can't decode bytes in position 116-117: invalid continuation byte 作者: Chuwen 时间: 2021-09-12 分类: Linux 评论 ## 环境 简单描述下我的环境,在 macOS 上装的 Docker,在 Docker 里面安装了 Spug。 然后在 Spug 添加主机,用 ssh 连接 本机,模拟相关环境构建、发布 - Docker for macOS: `Docker version 20.10.8, build 3967b7d` - Spug API版本: `v3.0.1-beta.9` - Spug Web版本: `v3.0.1-beta.9` ## 发布前任务出错 Exception: 'utf-8' codec can't decode bytes in position 116-117: invalid continuation byte ## 究其原因 直到我用 Web Console 连接本机 ssh,执行了下 `ll` 发现有的文件夹名字是 `????` 一看就发现问题了,原来是中文乱码了,我就想着报出上述的错误可能就是这个原因了。 ## 解决办法 假设你使用的是 `oh-my-zsh`,执行以下命令: ```shell vim ~/.zshrc ``` 然后在文件末尾添加上这里两句话: ``` export LC_ALL=zh_CN.UTF-8 export LANG=zh_CN.UTF-8 ``` 然后保存并退出,先按 `ESC` 然后英文输入状态下输入 `:wq`,再按 `Enter` 即可 然后使配置文件生效: ```shell source ~/.zshrc ```
Docker 获取宿主机 IP 地址 作者: Chuwen 时间: 2021-09-12 分类: Docker 评论 网上查找,都没有找到相关的 这个域名得到的就是宿主机的 IP:`host.docker.internal` 所以怎么使用应该知道了吧 ``` [root@3905274ca2a3 /]# ping host.docker.internal PING host.docker.internal (192.168.65.2) 56(84) bytes of data. 64 bytes from 192.168.65.2 (192.168.65.2): icmp_seq=1 ttl=37 time=0.173 ms 64 bytes from 192.168.65.2 (192.168.65.2): icmp_seq=2 ttl=37 time=0.524 ms 64 bytes from 192.168.65.2 (192.168.65.2): icmp_seq=3 ttl=37 time=0.248 ms 64 bytes from 192.168.65.2 (192.168.65.2): icmp_seq=4 ttl=37 time=0.515 ms ^C --- host.docker.internal ping statistics --- 4 packets transmitted, 4 received, 0% packet loss, time 3039ms rtt min/avg/max/mdev = 0.173/0.365/0.524/0.156 ms ```