SubmitBtn.vue 412 B

12345678910111213141516
  1. <script setup name="SubmitBtn">
  2. const props = defineProps({
  3. desc: {
  4. type: String,
  5. default: ''
  6. },
  7. type: {
  8. type: String,
  9. default: 'primary'
  10. }
  11. })
  12. </script>
  13. <template>
  14. <!-- <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> -->
  15. <el-button :type="type">{{props.desc}}</el-button>
  16. </template>