changcheng

Results 4 issues of changcheng

既然使用了Vue3.x版本,为什么还在使用Options API而不是官方推荐的Composition API?Vue3本身是使用TypeScript进行编译的,为什么还在大量使用JavaScript代码而不是对类型更加友好的TypeScript?下面是我写的Vue3..0 Composition API代码,本来想参考下你们的代码的组织结构,但现在感觉参考不到了: ``` export default defineComponent({ name: 'login', components: { [Form.name]: Form, [Field.name]: Field, Header }, setup (props: any) { const instance = getCurrentInstance() // @ts-ignore const...

相对于其它UI库,ng-devui的主题设计切换过于复杂,文档描述即为不清晰,对于开发者难度倍增,让人有一种想要放弃使用的感觉,UI库整体表现优秀,但整体风格偏向工程师文化,而风格转换又需要花费大量时间去理解设计者的意图,希望能够简化主题切换步骤完善相关文档。

enhancement
contribution welcome

能够正常获取echartsInstance实例,但在生成Base64位格式的图片调用其getDataURL方法时报错,不知道什么原因?截图: ![image](https://user-images.githubusercontent.com/18743063/43705004-f8be036a-9993-11e8-9e5a-2801b00744af.png) ![image](https://user-images.githubusercontent.com/18743063/43705031-0d897f5e-9994-11e8-9abc-05a760ad4337.png) ![image](https://user-images.githubusercontent.com/18743063/43705169-64110da6-9994-11e8-9423-520f10088b2e.png)

position: {x: number, y: number}, 如果要设置position的x、y为百分比的话,number类型就不再合适了,在JavaScript中一般用string来表示百分比值