mirror of
https://github.com/ChuXunYu/warOfCoins.git
synced 2026-01-30 16:11:26 +00:00
12 lines
194 B
JavaScript
12 lines
194 B
JavaScript
// app.js
|
|
App({
|
|
onLaunch: function () {
|
|
console.log('应用启动');
|
|
},
|
|
globalData: {
|
|
selectedEvent: null,
|
|
selectedStrategies: [],
|
|
currentRound: 0,
|
|
maxRounds: 3
|
|
}
|
|
})
|