fix: export only class as defaul
This commit is contained in:
parent
2db1129489
commit
902c3073ec
2 changed files with 3 additions and 3 deletions
|
|
@ -17,7 +17,7 @@ const PC_BUSY_DELAY = 500
|
||||||
* @param {String} appId
|
* @param {String} appId
|
||||||
* @param {String} version
|
* @param {String} version
|
||||||
*/
|
*/
|
||||||
export const Minesweeper = function(appId, version) {
|
const Minesweeper = function(appId, version) {
|
||||||
const _this = this
|
const _this = this
|
||||||
const storageService = new StorageService()
|
const storageService = new StorageService()
|
||||||
const timerService = new TimerService()
|
const timerService = new TimerService()
|
||||||
|
|
@ -831,4 +831,4 @@ export const Minesweeper = function(appId, version) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default Minesweeper
|
export default Minesweeper
|
||||||
|
|
|
||||||
|
|
@ -9,4 +9,4 @@ export default defineConfig({
|
||||||
fileName: 'mnswpr'
|
fileName: 'mnswpr'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue