website/src/scripts/pages/index.js

8 lines
92 B
JavaScript
Raw Normal View History

2024-04-21 19:31:36 +09:00
export const indexPageState = () => ({
count: 0,
2024-04-21 19:31:36 +09:00
increment() {
this.count++
}
2024-04-21 19:31:36 +09:00
})