mirror of
https://github.com/smallmain/cocos-enhance-kit.git
synced 2025-01-15 07:21:07 +00:00
16 lines
176 B
JavaScript
16 lines
176 B
JavaScript
|
/* eslint-disable */
|
||
|
const location = {
|
||
|
href: 'game.js',
|
||
|
search: '',
|
||
|
hash: '',
|
||
|
|
||
|
reload() {
|
||
|
},
|
||
|
|
||
|
replace(href) {
|
||
|
this.href = href
|
||
|
},
|
||
|
}
|
||
|
|
||
|
export default location
|