12 lines
170 B
JavaScript
12 lines
170 B
JavaScript
![]() |
import Mobile from './components/Mobile.jsx';
|
||
|
|
||
|
export default {
|
||
|
path: 'mobile',
|
||
|
|
||
|
getComponents(cb) {
|
||
|
setTimeout(() => {
|
||
|
cb(null, Mobile);
|
||
|
}, 0);
|
||
|
}
|
||
|
};
|