SubmitBtn.vue 742 B

1234567891011121314151617181920212223242526272829303132
  1. <script setup name="SubmitBtn">
  2. import { defineProps } from "vue";
  3. const props = defineProps({
  4. desc: {
  5. type: String,
  6. default: "",
  7. },
  8. type: {
  9. type: String,
  10. default: "primary",
  11. },
  12. });
  13. </script>
  14. <template>
  15. <!-- <div class="h-[24px] flex justify-center items-center text-white bg-[rgba(0,70,199,0.5)] px-[15px] cursor-pointer text-[14px] rounded-[13px]">{{props.desc}}</div> -->
  16. <el-button class="buttons" size="mini" :type="type">{{
  17. props.desc
  18. }}</el-button>
  19. </template>
  20. <style lang="less" scoped>
  21. .buttons {
  22. background-color: rgba(5, 187, 76, 0.2);
  23. border: 1px solid #3b6c53;
  24. color: #b3b3b3;
  25. font-size: 14px;
  26. &:hover {
  27. background-color: rgba(5, 187, 76, 0.5);
  28. color: #ffffff;
  29. }
  30. }
  31. </style>