Daniel

Results 38 comments of Daniel

@vincerubinetti Great idea, is it possible to turn your code into a configurable prop and contribute a PR to the project?

I have 2 suggestions: 1. Mark each node with the class attribute, you can add styles according to different class names, for example, you can use the path of the...

这是由于目前的数据设计模式导致的,下个大版本会考虑改成 `v-model` 或其他更加符合单向数据流的设计模式,现阶段可以按你说的两个方法去做

拖拽在第二页以后是有问题,但是分页第二页以后没有数据,我无法复现,提供的 [demo](https://leezng.github.io/element-patch/#/table) 上也是正常有数据的,你可以描述得更详细一些或者提供demo。 Thanks.

Thanks, it seems like a bug.

```ts const [options, setOptions] = useUrlState({ key: '', key2: '', key3: '', }) useRequest({ ... }, { refreshDeps: [options] }) ``` 这样一个场景,request通过options驱动,用户在页面上的操作触发了筛选条件变化,可能key从1变到2,这在现有的逻辑上是正常的,但是如果用户的操作没有导致key的变化,例如只是一个搜索框,按下回车,这时候筛选条件的值还是原来的options,这里的setOptions就不会改变到原来的对象,如果换成useState+useEffect的写法,如下: ```ts const [options, setOptions] = useState({}) useEffect(() =>...

Now, you can use `slot` to achieve.

I'm very sorry that this issue has not been dealt with. I expect to release a minimum usable method in the next version. Here, I also hope to collect everyone’s...

> @leezng no need to apologise, it's a great package. > > I have a few points to consider: > > * It would be useful if it could search...