LoginBtn.vue 560 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <div class="btnBox">
  3. <div class="btn" @click="TextClick">
  4. {{BtnText}}
  5. </div>
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. props:['BtnText'],
  11. methods:{
  12. TextClick() {
  13. this.$emit('TextClick')
  14. }
  15. }
  16. }
  17. </script>
  18. <style scoped lang="less">
  19. .btnBox{
  20. padding: 5.556vw 2.778vw;
  21. }
  22. .btn{
  23. height: 12.778vw;
  24. background-color: #009FE8;
  25. border-radius: 6.389vw;
  26. display: flex;
  27. justify-content: center;
  28. align-items: center;
  29. color: white;
  30. font-size: 5vw;
  31. }
  32. </style>