10 lines
134 B
JavaScript
10 lines
134 B
JavaScript
const { initStore } = require("./store/namingStore");
|
|
|
|
App({
|
|
onLaunch() {
|
|
initStore();
|
|
},
|
|
onShow() {},
|
|
globalData: {}
|
|
});
|