sendSlack () { const payload = { // slackのデータ 'blocks': [ { 'type': 'section', 'text': { 'type': 'mrkdwn', 'text': 'slackに送信' } }, { 'type': 'section', 'fields': [ { 'type': 'mrkdwn', 'text': 'ああああ' }, ] }, { 'type': 'actions', 'elements': [ { 'type': 'button', 'text': { 'type': 'plain_text', 'emoji': true, 'text': 'Approve' }, 'style': 'primary', 'value': 'click_me_123' }, { 'type': 'button', 'te

