xiaobai

Results 6 issues of xiaobai

![image](https://github.com/surely-vue/surely-table/assets/31175506/84801828-5763-4c66-adca-73a45c2ea170) 项目采用cdn对vue.global.prod.js进行加速 ![image](https://github.com/surely-vue/surely-table/assets/31175506/42f10ec8-9dca-4d14-b663-52ed1ad53c31) 对应点击事件的vue源码如下: ```typescript function createInvoker(initialValue, instance) { const invoker = (e) => { if (!e._vts) { e._vts = Date.now(); } else if (e._vts { originalStop.call(e); e._stopped = true;...

```js // script export default class MenuButton extends Vue { color = 'red'; } // style div { width: 20px; height: 24px; position: relative; cursor: pointer; background-color: v-bind(color); } //...

- [x] I have searched the [issues](https://github.com/vueComponent/ant-design-vue/issues) of this repository and believe that this is not a duplicate. ### Version 4.1.0 ### Environment ant-design-vue:4.1.2 vue:3.4.21 vite:5.2.0 node20 ### Reproduction link...

![image](https://github.com/surely-vue/surely-table/assets/31175506/50b56c1f-b7df-4e7b-9525-e00461f5be2f) **columns:** ```json { "title": "提货", "children": [ { "title": "自车", "children": [ { "title": "自车成本金额", "dataIndex": "fzsyssharing", "key": "fzsyssharing", "width": 300, "drag": true, "resizable": true, "align": "center", "showMenu": "hover",...

Feature

![image](https://github.com/surely-vue/surely-table/assets/31175506/1ffaf61d-9adb-4902-b907-bdbc5443f9e6) 并且使用表头菜单筛选,不可控(不能通过给filteredValue赋值的方式来清空)

我们有个表格查询非常慢(要查好几个数据库),所以前端做了懒加载,先通过一个接口加载单号,再带着单号加载其他数据 目前的做法是在滚动到 **_特定位置_** 时,拿50个单号作为入参加载其他数据 ![image-20240709110732915](https://github.com/surely-vue/surely-table/assets/31175506/d6564de3-38df-48ee-9287-c833eb18d1dc) **_特定的位置_** `document.querySelector(div[data-row-key="CP2024062814597"])` 当系统单号CP2024062814597出现在视口时加载下一批数据,然后替换监听的系统单号 **目前遇到的问题** 由于表格存在虚拟滚动 用鼠标缓慢滚动时,可以正常监听到单号div的出现。但是当滚动位移过大时,`div[data-row-key="CP2024062814597"]` 不会出现在视口中 **希望能获取到指定cloumn在视口渲染的数据值,比如提供方法** `STableRef.getViewportDate('systemCode')` 能获取到当前渲染的系统单号`['cp20240628...', 'cp20240627...']`