App React 组件

App React 组件是 Framework7 应用程序的主组件,所有 Framework7 核心初始化 都发生在这里,并且您需要在此传递所有 Framework7 主要参数。

App 组件

包含以下组件

App 属性

App 组件将所有 App 参数 作为组件属性接收。

示例

import AboutPage from './about.jsx';
import ServicesPage from './services.jsx';

const f7params = {
  name: 'My App',
  // routes
  routes: [
    {
      path: '/about/',
      component: AboutPage,
    },
    {
      path: '/services/',
      component: ServicesPage,
    },
  ],
  // ... other params
}
export default () => (
  <App {...f7params}>
    ...
  </App>
);