customButtonSms.vue 363 B

12345678910111213141516
  1. <template>
  2. <button type="button" class="kakao--sms--button" @click="sendMsg">재발송</button>
  3. </template>
  4. <script setup>
  5. // props
  6. const props = defineProps({
  7. params: Object,
  8. });
  9. function sendMsg() {
  10. if (props.params && typeof props.params.onSendKakao === "function") {
  11. props.params.onSendKakao(props.params.value);
  12. }
  13. }
  14. </script>