filename: ./src/counter.js export class Counter { value = 0; fetch() { this.value++; return new Response(this.value.toString()); } }
確定! 回上一頁