poster.vue 582 B

123456789101112131415161718192021222324252627282930313233
  1. <template recyclable="true">
  2. <div>
  3. <image class="image" :src="imageUrl"></image>
  4. <text class="title">{{title}}</text>
  5. </div>
  6. </template>
  7. <script>
  8. module.exports = {
  9. props: {
  10. imageUrl: {
  11. type: String,
  12. default: 'https://gw.alicdn.com/tfs/TB1KF_ybRTH8KJjy0FiXXcRsXXa-890-1186.png'
  13. },
  14. title: {
  15. type: String,
  16. default: 'I WANT YOU!'
  17. }
  18. }
  19. }
  20. </script>
  21. <style scoped>
  22. .image {
  23. width: 750px;
  24. height: 1000px;
  25. }
  26. .title {
  27. font-size: 80px;
  28. text-align: center;
  29. color: #E95659;
  30. }
  31. </style>