chilingling

Results 34 comments of chilingling

联网状态下能够安装并启动成功,但是在手动拷贝代码以及依赖到另一个目录重新运行的场景太少了。官方精力有限,恕无法提供帮助。 建议通过内网搭建私有 npm registry 的方式来完成依赖的安装以及同步。 参考: - https://github.com/cnpm/cnpm - https://github.com/verdaccio/verdaccio @houmenglong

将在新版出码方案解决

新版出码方案已支持 @stwflyfox

![image](https://github.com/user-attachments/assets/6a01406c-dd4d-46ea-a01a-40d0e4d6102c) 列editor 配置如下: ```js { // component 以 `Tiny` 开头的 Tinyvue 组件,当前不支持 Elementplus "component": "TinySelect", // attrs的子属性,传递给 TinySelect 组件的属性 "attrs": { "options": [ { "label": "test", "value": "test" }, {...

@yao521521 我看了下 opentiny/vue 组件库 demo,opentiny/vue 组件库的 `ChartProcess ` demo 也挂了。建议给 opentiny/vue 提 issue。

@yao521521 跟 opentiny/vue 组件库的人沟通了下,该组件在 @opentiny/vue 3.15 才有的,需要将 @opentiny/vue 组件库指定为 3.15+

百度地图页面显示的问题,这样修改可以显示: ```json { "name": { "zh_CN": "百度地图" }, "component": "ChartBaiduMap", "icon": "chart-baidu-map", "description": "百度地图", "docUrl": "", "screenshot": "", "tags": "", "keywords": "", "devMode": "proCode", "npm": { "package": "@opentiny/vue", "exportName": "ChartBaiduMap",...

当前区块编译物料跟 TinyVue 绑定在一起(官方后续会出方案解耦)。 如果需要编译 Element Plus 的区块。可以将 [blockToWebcomponent](https://github.com/opentiny/tiny-engine/tree/develop/packages/blockToWebComponentTemplate) 进行改造。 主要点如下: - 将 [vite.config.js 46行](https://github.com/opentiny/tiny-engine/blob/develop/packages/blockToWebComponentTemplate/vite.config.js#L46) 样式链接替换成 element plus 的全局样式链接。 - package.json 中,添加 Element Plus 的相关依赖。 - vite.config.js 中,external 和 global 添加...