1 parent ea26d68 commit be58689Copy full SHA for be58689
1 file changed
web/pages/oss-friends/index.vue
@@ -63,17 +63,20 @@ export default Vue.extend({
63
mdiOpenInNew,
64
apps: [] as AppData[],
65
}),
66
- async fetch() {
67
- const response = await fetch(
68
- 'https://corsproxy.io/?https%3A%2F%2Fformbricks.com%2Fapi%2Foss-friends',
69
- ).then((res) => res.json())
70
- this.apps = response.data
71
- },
72
head() {
73
return {
74
title: 'Open Source Friends - httpSMS',
75
}
76
},
+ mounted() {
+ fetch(
+ 'https://corsproxy.io/?https%3A%2F%2Fformbricks.com%2Fapi%2Foss-friends',
+ )
+ .then((res) => res.json())
+ .then((response: any) => {
77
+ this.apps = response.data
78
+ })
79
+ },
80
})
81
</script>
82
0 commit comments