SubmitBtn.vue 364 B

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