You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
799 B

  1. <template>
  2. <div class="panel panel-default" v-show="show">
  3. <div class="panel-heading"><div class="team-name">{{ tweet.team_name }}</div></div>
  4. <div class="panel-body scorecard">
  5. <div class="profile">
  6. <img :src="tweet.player_photo" :style="'border-color: #'+tweet.team_color">
  7. <span><a :href="'https://twitter.com/'+tweet.player_username">@{{ tweet.player_username }}</a></span>
  8. </div>
  9. <div class="tweet">
  10. {{ tweet.text }}
  11. <div v-for="img in tweet.photos">
  12. <img :src="img">
  13. </div>
  14. </div>
  15. <div>{{ tweet.mission }}</div>
  16. </div>
  17. </div>
  18. </template>
  19. <script>
  20. module.exports = {
  21. props: ['show', 'tweet'],
  22. data () {
  23. return {
  24. }
  25. },
  26. created() {
  27. console.log(this.tweet);
  28. }
  29. }
  30. </script>