forked from karimal/simple-twitter-vuejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeed.vue
70 lines (60 loc) · 1.41 KB
/
feed.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<template id="feed">
<div>
<div v-for="tweet in feed" :key="tweet.title" class="tweet">
<div class="avatarContainer">
<img :src="tweet.avatar" class="avatar" width="70" height="70">
</div>
<div class="tweetBody">
<div class="tweetHead">
<span class="author">
{{ tweet.author }}
</span>
{{ tweet.date }}
</div>
<div class="tweetContent">
{{ tweet.body }}
</div>
</div>
</div>
</div>
</template>
<script>
module.exports = {
data: function() {
return {
data: store.data
}
},
computed: {
feed() {
return this.data.feed.filter(tweet => {
return tweet.body.indexOf(this.data.search) > -1;
})
}
}
}
</script>
<style>
.avatarContainer {
margin-right: 20px;
}
.avatar {
margin-top: 3px;
border-radius: 50%;
}
.tweetBody {
margin-top: 5px;
}
.tweetHead {
font-size: 13px;
}
.author {
font-size: 14px;
font-weight: bold;
}
.tweetContent {
font-size: 14px;
line-height: 20px;
margin-top: 8px;
}
</style>