2019-07-31 18:19:26 +08:00
|
|
|
|
## git problem...
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-07-10 11:42:46 +08:00
|
|
|
|
我的锅...远程分支没设定好,推得哪个自己都不知道。
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
|
|
|
|
## test 时候 vue v-model 产生的效果必须在 \$nextTick() 之后才会产生,虽然它声称自己是同步的...
|
|
|
|
|
|
|
|
|
|
我的锅,忘了为啥了。确实是同步的,是我没有考虑到 v-model 这东西应该用什么方法测试。
|
|
|
|
|
|
2019-07-31 18:19:26 +08:00
|
|
|
|
## Vue loader 编译深度选择器出了问题
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-07-17 01:35:11 +08:00
|
|
|
|
a >>> b 被编译成了 a > > > b
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-07-31 18:19:26 +08:00
|
|
|
|
## input 的 change 不随外界 props value 的改变改变
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-07-17 14:40:28 +08:00
|
|
|
|
其他的我还没想好
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-07-31 18:19:26 +08:00
|
|
|
|
## 2019.7.17 There may be a bug of chrome
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-07-17 18:42:05 +08:00
|
|
|
|
在一个 single filterable select 中,会出现一个 bug...,这个 bug 会让溢出屏幕的 item 不再显示。感觉可能是 Chrome 为了性能优化没有渲染一些在屏幕外面的东西,暂时通过 translateZ(0) 解决了。
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-07-31 18:19:26 +08:00
|
|
|
|
## 2019.7.17 Popover
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-07-17 18:42:05 +08:00
|
|
|
|
popover 的 hover 有问题,哎...一大堆东西闪来闪去就可能 mouseleave 没触发就一直留在那了
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-07-31 18:19:26 +08:00
|
|
|
|
## 2019.7.31 Margin 没有撑开元素
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-07-31 18:19:26 +08:00
|
|
|
|
overflow: hidden 可以解决,这是 BFC 的问题
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-08-01 18:19:03 +08:00
|
|
|
|
## 2019.8.1
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-08-01 18:19:03 +08:00
|
|
|
|
width: fit-content, min-content, max-content, intrinsic, extrinsic
|
|
|
|
|
flex, flex-grow
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-08-01 18:19:03 +08:00
|
|
|
|
```
|
|
|
|
|
render (h) {
|
|
|
|
|
console.log(this.$props)
|
|
|
|
|
return h('div', {
|
|
|
|
|
staticClass: 'n-steps'
|
|
|
|
|
}, mapSteps({ ...this.$props }, this.$slots.default))
|
|
|
|
|
}
|
|
|
|
|
```
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
|
|
|
|
为什么 \$props 不一样?解构赋值做了什么
|
|
|
|
|
document.querySelector('\*[n-id=888d3] .simulate-transparent-text') 不合法?
|
|
|
|
|
|
2019-08-08 16:03:56 +08:00
|
|
|
|
## 2019.8.8
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-08-08 16:03:56 +08:00
|
|
|
|
函数节流别忘了加上@scroll
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-08-27 11:19:53 +08:00
|
|
|
|
## 2019.8.27
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-08-27 11:19:53 +08:00
|
|
|
|
activator 外面不应该包元素
|
|
|
|
|
检查内存泄露可能性
|
2019-11-12 19:40:46 +08:00
|
|
|
|
考虑级联异步 api
|
|
|
|
|
placement \$refs 变化更改
|
|
|
|
|
|
2019-09-03 14:13:01 +08:00
|
|
|
|
## 2019.8.28
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-08-28 19:19:31 +08:00
|
|
|
|
picker 在 input 聚焦的时候,esc 按钮不符合预期
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-09-03 14:13:01 +08:00
|
|
|
|
## 2019.8.29
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-08-29 19:01:12 +08:00
|
|
|
|
block transition for date picker in range not via :key
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-09-03 14:13:01 +08:00
|
|
|
|
## 2019.9.2
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-09-02 15:55:23 +08:00
|
|
|
|
select menu 更加自治一点 比如 isSelected,可能最后要加到 vmodel 为止
|
2019-09-02 18:30:53 +08:00
|
|
|
|
tooltip css max-content 兼容性
|
|
|
|
|
popover z-index 问题
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-09-03 14:13:01 +08:00
|
|
|
|
## 2019.9.3
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-09-03 14:13:01 +08:00
|
|
|
|
popover 停止追踪的时机
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-09-24 16:59:07 +08:00
|
|
|
|
## 2019.9.24
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-09-24 16:59:07 +08:00
|
|
|
|
popover 可能 activator 和 content 不同步,在 beforeRouteEnter locale change 的时候!!!
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-09-28 18:50:56 +08:00
|
|
|
|
## 2019.9.28
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-09-28 18:50:56 +08:00
|
|
|
|
confirm 有 bug = =...和 button 颜色相关,之后检查吧
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-10-21 14:49:08 +08:00
|
|
|
|
## 2019.10.21
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-10-21 14:49:08 +08:00
|
|
|
|
Radio Button 默认主题下是否 hollow out,这是个问题
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-11-14 11:04:19 +08:00
|
|
|
|
## 2019.11.14
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-11-14 11:04:19 +08:00
|
|
|
|
base picker focus 问题
|
2019-12-16 15:47:25 +08:00
|
|
|
|
|
2019-12-03 21:35:39 +08:00
|
|
|
|
## 2019.12.3
|
2019-12-16 15:47:25 +08:00
|
|
|
|
|
2019-12-03 20:00:29 +08:00
|
|
|
|
Dropdown Submenu 定位问题
|
2019-12-03 21:35:39 +08:00
|
|
|
|
还有那个... Modal + border 的问题,怎么解决
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2019-12-20 18:49:54 +08:00
|
|
|
|
## 2019.12.20
|
|
|
|
|
Anchor Bug 复现 at typography
|
|
|
|
|
|
2019-12-23 22:18:04 +08:00
|
|
|
|
## 2019.12.23
|
|
|
|
|
Damn eslint
|
|
|
|
|
```
|
|
|
|
|
What fixed it for me was using double quotes and an escaping slash like so:
|
|
|
|
|
"lint": "eslint \"**/*.{js,jsx}\" --quiet",
|
|
|
|
|
|
|
|
|
|
Previously, it would not work with single quotes:
|
|
|
|
|
"lint": "eslint '**/*.{js,jsx}' --quiet",
|
|
|
|
|
```
|
|
|
|
|
|
2019-12-30 19:38:24 +08:00
|
|
|
|
## 2019.12.30
|
|
|
|
|
为了按需引入打包大小依旧可控,需要用某种方式让互相的依赖变为外部依赖。或者就维持原本的文件结构,这样的话需要的是 babel。看起来还是有点麻烦,之后再解决吧。
|
|
|
|
|
|
2019-12-30 20:40:03 +08:00
|
|
|
|
|
2019-07-17 18:42:05 +08:00
|
|
|
|
## TODO
|
2019-12-30 20:40:03 +08:00
|
|
|
|
Focus Detector on Time Selector
|
2019-12-31 18:27:58 +08:00
|
|
|
|
Menu Root Indent = 0 可以造成问题
|
2020-01-05 15:20:35 +08:00
|
|
|
|
用 RAF 优化 scrollbar 性能
|
2020-01-08 16:22:04 +08:00
|
|
|
|
Anchor 切换有 bug,忽然闪现第一个
|
2020-01-09 00:47:14 +08:00
|
|
|
|
Notification content close
|
|
|
|
|
Safari select lightbar container overflow 边角
|
|
|
|
|
Chrome lightbar offset @table fitler
|
2020-02-05 22:20:12 +08:00
|
|
|
|
cascader 数据结构维护,维持原选项!
|
2020-01-29 20:51:51 +08:00
|
|
|
|
anchor 还是有点问题 bound 不够的时候切换
|
2020-02-04 13:40:10 +08:00
|
|
|
|
modal transform scale
|
2020-02-05 12:48:37 +08:00
|
|
|
|
form async validation
|
|
|
|
|
table filter
|
2020-02-05 13:46:57 +08:00
|
|
|
|
tabs 尺寸变化
|
2020-02-05 22:20:12 +08:00
|
|
|
|
排查 render 函数是否每个地方都支持数组
|
2019-11-12 19:40:46 +08:00
|
|
|
|
|
2020-02-05 22:20:12 +08:00
|
|
|
|
// form required css
|
|
|
|
|
// Md Loader 对于 strong 的处理
|
2020-01-10 14:42:11 +08:00
|
|
|
|
// pref hollowout, cache next bg color
|
2019-12-30 20:40:03 +08:00
|
|
|
|
// issue fix, add delay prop
|
|
|
|
|
// add trigger to tooltip
|
|
|
|
|
// outside click delegate select
|
|
|
|
|
// DatePicker range Bug
|
2019-09-20 18:20:21 +08:00
|
|
|
|
// Scrollbar Firefox...
|
|
|
|
|
// scrollbar 在 resize 之后滚动会有问题
|
2019-12-30 20:40:03 +08:00
|
|
|
|
// ResizeObserver Polyfill
|
2020-02-05 22:20:12 +08:00
|
|
|
|
// Select 需要进一步重构,现在这种状况 collector 在 corner case 中不会调 updated 钩子,要把 key 换成 value
|