UNPKG

weex-nuke

Version:

基于 Rax 、Weex 的高性能组件体系 ~~

23 lines (18 loc) 451 B
/** * Copyright (c) 2017-present, Alibaba Group Holding Limited. * All rights reserved. */ /** @jsx createElement */ 'use strict'; import Item from './view/item'; const isWeex = typeof callNative === 'function' || (typeof WXEnvironment === 'object' && WXEnvironment.platform !== 'Web'); let Entry; if (isWeex) { Entry = require('./view/tabbar'); } else { Entry = require('./view/tabbar-web'); } Entry.Item = Item; export default Entry;