123456789101112 |
- <script setup name="SubmitBtn">
- const props = defineProps({
- desc: {
- type: String,
- default: ''
- }
- })
- </script>
- <template>
- <!-- <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> -->
- <el-button type="primary">{{props.desc}}</el-button>
- </template>
|