您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

route.js 170B

12345678
  1. import { RouteRegistry } from '../base/navigator';
  2. import { Landing } from './components';
  3. RouteRegistry.register({
  4. component: Landing,
  5. path: '/mobile-app'
  6. });