mirror of
https://github.com/easychen/pushdeer.git
synced 2025-02-24 00:44:55 +08:00
18 lines
372 B
Plaintext
18 lines
372 B
Plaintext
|
<script>
|
||
|
/**
|
||
|
* 应用级别的配置,供所有页面公用
|
||
|
*/
|
||
|
|
||
|
const $utils = require('./helper/utils').default
|
||
|
const $apis = require('./helper/apis').default
|
||
|
|
||
|
/* @desc: 注入方法至全局 global,以便页面调用 */
|
||
|
const hook2global = global.__proto__ || global
|
||
|
hook2global.$utils = $utils
|
||
|
hook2global.$apis = $apis
|
||
|
|
||
|
export default {
|
||
|
onCreate() {}
|
||
|
}
|
||
|
</script>
|