You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This thread has been automatically locked because it has not had recent activity. Please open a new issue for related bugs and link to relevant comments in this thread.
lockbot
locked as resolved and limited conversation to collaborators
Apr 19, 2019
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
首先感谢提供这么棒的ant design的Vue实现。
我已经进行了一些基本的尝试,体验还不错,但是有一个比较头疼的问题,就是每一个组件都需要import之后再使用
Vue.component
进行注册。而且官网上没有直接告诉我们应当导入哪一个组件,怎么去注册。只是给出了一个componen list的链接,在里面你们给出了所有组件的注册示例。所以现在我在开发的时候必须打开这个文件,添加组件的时候去参考里面的内容。使用起来不太方便。通常情况下在Vue组件库中应当提供install方法注册所有组件,使用者在使用的时候可以直接使用
Vue.use()
去导入整个组件库,不需要每次导入并且指定组件名。The text was updated successfully, but these errors were encountered: