13 lines
211 B
JavaScript
13 lines
211 B
JavaScript
// app.js
|
|
import { hostConfig} from "./utils/config"
|
|
import router from './utils/router.js'
|
|
App({
|
|
onLaunch: function () {
|
|
},
|
|
method: router,
|
|
hostConfig: hostConfig,
|
|
globalData: {
|
|
height: 0
|
|
}
|
|
});
|