快速上手
下载安装
$ ohpm install @itrain/wu-ui使用方法
初始化组件库
// ......
import WuUI from '@itrain/wu-ui'
export default class EntryAbility extends UIAbility {
// ......
onWindowStageCreate(windowStage: window.WindowStage): void {
// ......
windowStage.loadContent('pages/Splash', (err) => {
if (err.code) {
hilog.error(0x0000, 'testTag', 'Failed to load the content. Cause: %{public}s', JSON.stringify(err) ?? '');
return;
}
/***********************************/
/****** 此处添加初始化组件库代码 *******/
/***********************************/
WuUI.init(windowStage)
hilog.info(0x0000, 'testTag', 'Succeeded in loading the content.');
});
}
// ......
}使用组件
Last updated