zshtxwd

Results 8 comments of zshtxwd

这个适配应该找主题作者,不是工具作者

我觉得这个问题,你应该找写这个主题的大佬,而不是写这个插件的大佬

I understand that dataIndex can be used, but it is not as convenient when dealing with dynamic data. It is more suitable for dynamic data. We need an attribute like...

Thank you for your reply. Yes, I am aware, but in fact, your ECharts already supports directly using IDs to specify source and target. Can you please add this feature...

还有,给出的vue3的demo写法看起来很怪,像是vue2的配置式写法

使用了@js-preview/docx顺利实现了功能,疑似是vue版本太新,插件只是勉强对vue3做了兼容导致的问题 这是我的代码 ```vue import { ref, reactive, watch, nextTick } from "vue" import jsPreviewDocx from "@js-preview/docx" import '@js-preview/docx/lib/index.css' //初始化时指明要挂载的父元素Dom节点 const createDocxPreview = () => { const myDocxPreviewer = jsPreviewDocx.init(document.getElementById('docx')) //传递要预览的文件地址即可...