iyeed-ui
v0.0.1
Published
iyeed company front-end components base of Vue.js
Downloads
304
Maintainers
Readme
iyeed-ui
iyeed company front-end components base of Vue.js.
Easy to use by providing simple api. Unlike other component libraries, it uses the browser itself to scroll instead of js, so it has a smaller code size but does not lose the user experience.
English | 中文
Preview
Installation
Install the npm package
# npm
npm install iyeed-ui --save
Import
import Vue from 'vue';
import IyeedUI from 'iyeed-ui';
Vue.use(IyeedUI);
Internationalization support
Support Chinese zh-CN and English en-US, the default is zh-CN.
import IyeedUI from 'iyeed-ui';
Vue.use(IyeedUI, {
lang: 'en-US'
})
You can also use locale.use()
to specify the language.
import IyeedUI, { locale } from 'iyeed-ui';
Vue.use(IyeedUI);
locale.use('en-US');