10 lines
156 B
JavaScript
10 lines
156 B
JavaScript
|
// #ifdef APP-PLUS
|
||
|
import service from './app';
|
||
|
// #endif
|
||
|
|
||
|
let apple = {};
|
||
|
if (typeof service !== 'undefined') {
|
||
|
apple = service;
|
||
|
}
|
||
|
export default apple;
|