We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9dab38b commit 3009d99Copy full SHA for 3009d99
frontend/src/views/app/Browse.vue
@@ -22,6 +22,21 @@ export default {
22
},
23
data: () => ({
24
recommendations: [],
25
+ recommendationsAnalysis: {
26
+ age: {
27
+ min: null,
28
+ max: null,
29
+ },
30
+ distance: {
31
32
33
34
+ fame: {
35
36
37
38
+ interests: [],
39
40
}),
41
async created() {
42
if (this.recommendationsFromSettingUp) {
@@ -30,6 +45,9 @@ export default {
45
const recommendationsRequest = await this.$http.get('/recommendations');
46
this.recommendations = recommendationsRequest.data.recommendations;
47
}
48
+ for (let i = 0; i < this.recommendations.length; i += 1) {
49
+ console.log(this.recommendations[i]);
50
+ }
51
52
};
53
0 commit comments