q-design 组件安装方式如下(以基础组件q-components为例):
npm install @qnpm/q-components --save --registry=http://npmrepo.corp.qunar.com
import React, { Component } from 'react';
import { View } from 'react-native';
import { Button } from '@qnpm/q-components';
export default class Demo extends Component {
render() {
return (
<View>
<Button text={'按钮'} />
</View>
);
}
}
由于Q-Deisign组件库各组件使用统一版本号,建议接入及更新依赖时,组件均使用最新版本,以保证获得最好的功能体验。 组件版本更新信息可查看左侧组件更新日志。