[READ-ONLY] Mirror of https://github.com/danielroe/fetch-on-server.
0

Configure Feed

Select the types of activity you want to include in your feed.

feat: add console.log

Daniel Roe (Nov 17, 2020, 10:22 PM UTC) 9fc65561 d60260da

+5 -4
+5 -4
pages/index.vue
··· 7 7 <script> 8 8 export default { 9 9 data: () => ({ 10 - test: 0, 10 + test: 0 11 11 }), 12 12 fetch() { 13 - this.test = 24 13 + console.log("fetching now"); 14 + this.test = 24; 14 15 }, 15 - fetchOnServer: false, 16 - } 16 + fetchOnServer: false 17 + }; 17 18 </script>