Giter VIP home page Giter VIP logo

Comments (33)

aidenZou avatar aidenZou commented on May 14, 2024 12

例外一点建议,不推荐在模板中使用组件的时候强制添加 i-button 或者 v-button 这种前缀。
像 button这种冲突的命名,由使用者自己来处理。比如:
推荐:

import iButton from './Button';

import ButtonI from './Button';

不推荐现在的这种写法:

import iButton from './iButton';

from iview.

afc163 avatar afc163 commented on May 14, 2024 8

感觉你们的完成质量和维护力度是目前最好的,不知道你们可否愿意做为 Ant Design 的一套实现放一个链接到这里:https://ant.design/docs/spec/introduce-cn#%E5%89%8D%E7%AB%AF%E5%AE%9E%E7%8E%B0

from iview.

icarusion avatar icarusion commented on May 14, 2024 5

we'll add more details

from iview.

IssueHuntBot avatar IssueHuntBot commented on May 14, 2024 2

@0maxxam0 funded this issue with $40. See it on IssueHunt

from iview.

Backlighting-Neo avatar Backlighting-Neo commented on May 14, 2024 1

非常喜欢IView这套UI库,愿意参与Vue2.0的升级工作,我看到还有不到10个左右的component未转换到2.0的分支上,有没有工作计划?

from iview.

wangxiao avatar wangxiao commented on May 14, 2024 1

I think we need change the master branch to the 2.0 branch, the developing code is used to storing in the master branch.

from iview.

SergioCrisostomo avatar SergioCrisostomo commented on May 14, 2024 1

Hi all!

I've been woking and contributing for iview lately and happy to be part developers using iView.
I will continue helping where needed.

@icarusion just added jsFiddle demos to all components in the website 🎉 🎉

from iview.

yuu2lee4 avatar yuu2lee4 commented on May 14, 2024

现在ant design风格的vue组件库有几个 可以整合一下。。。共同开发

from iview.

aidenZou avatar aidenZou commented on May 14, 2024

例外两个还是放弃吧,放重点来持续维护这一套。团队来主导会有持续的业务需求来历练,功能、API 都会更实用、精简。个人维护的 脱离了业务需求、换个工作,通常就不更新了,持续性不强。

from iview.

jingsam avatar jingsam commented on May 14, 2024

随时欢迎 PR,这里有当前组件完成情况。

from iview.

jingsam avatar jingsam commented on May 14, 2024

@aidenZou 使用iButton是为了照顾全局注册的情况,例如 Vue.use(iview) 后就不用单独import了。

添加前缀不是强制的,你可以使用局部注册来自定义组件名,例如:

import {iButton} from 'iview';

export default {
  components: {
    iButton: ButtonI
  }
}

from iview.

icarusion avatar icarusion commented on May 14, 2024

我们欢迎各种方式的贡献代码

from iview.

aidenZou avatar aidenZou commented on May 14, 2024

@jingsam 了解了,全局注册的情况之前没考虑到,之前做移动端一直是按需引用的

from iview.

icarusion avatar icarusion commented on May 14, 2024

@afc163 没问题啊,我们会一直维护的,感谢!

from iview.

mithenji avatar mithenji commented on May 14, 2024

@icarusion 什么时候能更新到Vue 2.0 呢

from iview.

lilien1010 avatar lilien1010 commented on May 14, 2024

@mithenji 2.0 变动挺多的吧,我都已经用这个版本开始开发了

from iview.

foolnote avatar foolnote commented on May 14, 2024

请问 Layout 组件后续有没有做成响应式布局的计划呢?

from iview.

zbwfisher1 avatar zbwfisher1 commented on May 14, 2024

首先感谢iveiw这么高质量的开源项目,ui展现效果很不错,借助iview技术也有了很大的进步。希望作者多添加一些颜色方面的介绍和心得,例如在mac环境下的#1c94c4,我经常用这个墨水兰的颜色,还有我感觉可能iview中类似button中的文字,整体中文字体有点偏细,提示效果稍微有点不明显

from iview.

icarusion avatar icarusion commented on May 14, 2024

@zbwfisher1 感谢支持。后续会推出主题皮肤功能,对很多css变量进行个性化配置。

from iview.

p0h5 avatar p0h5 commented on May 14, 2024

为啥没有做列表呢

from iview.

icarusion avatar icarusion commented on May 14, 2024

@Backlighting-Neo welcome!加下我微信详聊吧icarusion

from iview.

Ryan724 avatar Ryan724 commented on May 14, 2024

期待参与到2.0 分支开发~

from iview.

icarusion avatar icarusion commented on May 14, 2024

@Ryan724 欢迎贡献

from iview.

taodamiao avatar taodamiao commented on May 14, 2024

2.0什么时候发?有大概日期么?

from iview.

JanusJia avatar JanusJia commented on May 14, 2024

2.0大概什么时候发布

from iview.

zhonggithub avatar zhonggithub commented on May 14, 2024

希望能参与到vue 2.0 版分支开发

from iview.

kiyonlin avatar kiyonlin commented on May 14, 2024

蛮早就关注iview组件库了,可惜现在是基于vue1.0的。希望能加入到vue2.0版本的开发当中😁

from iview.

wangxiao avatar wangxiao commented on May 14, 2024

@icarusion Hi 能否补充一下更详细的贡献过程在 README.md 里面么?例如,如果贡献,需要执行什么,怎么运行测试用例,用哪个命令打包之类的。

from iview.

icarusion avatar icarusion commented on May 14, 2024

@wangxiao Hi, more info can be found here https://www.iviewui.com/docs/guide/standard-en and pass npm run test.

from iview.

wangxiao avatar wangxiao commented on May 14, 2024

@icarusion thx, but the guide did not say how to do those things, for example, do i need to run npm run dev for developing, and how to update the iVew doc, and blablabla...

I really hope you can supplement those details, that how to contribute.

from iview.

icarusion avatar icarusion commented on May 14, 2024

More commands can view the package.json, and the doc code is here https://github.com/iview/iview-doc. However, it is not mandatory to update the documentation and unit tests. Thank you!

from iview.

wangxiao avatar wangxiao commented on May 14, 2024

eh... ok... but i think it maybe not enough friendly for contributor. I think we can reference LeanCloud JavaScript SDK or Vuejs , maybe it is better.

from iview.

IssueHuntBot avatar IssueHuntBot commented on May 14, 2024

@rororofff has funded $5.00 to this issue.


from iview.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.