index.vue 603 B

12345678910111213141516171819202122232425262728293031323334
  1. <!-- 活动首页-->
  2. <template>
  3. <div class="index">
  4. <img src="./../assets/img/header.png" class="header" alt="">
  5. <div class="btn-group">
  6. <button class="btn">分享</button>
  7. <button class="btn btn-primary">活动详情</button>
  8. </div>
  9. </div>
  10. </template>
  11. <script>
  12. export default {
  13. name: 'index',
  14. }
  15. </script>
  16. <style scoped>
  17. .index{
  18. background-color: #FFC93A;
  19. height:100vh;
  20. }
  21. .btn-group{
  22. padding-top: .34rem;
  23. text-align: center;
  24. }
  25. .btn-primary{
  26. background-color: #FF3418;
  27. color: #FFFFFF;
  28. }
  29. </style>