From 137624d7c2a8ff501082b6a1e8fab14c84ae8133 Mon Sep 17 00:00:00 2001 From: rca Date: Fri, 19 Jul 2024 00:40:10 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=87=E3=83=90=E3=83=83=E3=82=B0=E3=81=A7pi?= =?UTF-8?q?ng=E3=82=92=E5=8F=A9=E3=81=8F=E3=82=88=E3=81=86=E3=81=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/layouts/MainLayout.vue | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/layouts/MainLayout.vue b/src/layouts/MainLayout.vue index 07c8097..e2faa42 100644 --- a/src/layouts/MainLayout.vue +++ b/src/layouts/MainLayout.vue @@ -29,6 +29,13 @@ if (store.state.account.isLoggedIn) { alert('User is not logged in'); } +import { sendPing } from 'src/api/apiService'; + +sendPing().then((response) => { + // debug, show alert + alert('Ping response: ' + response); +}); + defineOptions({ name: 'MainLayout' });