デバッグでpingを叩くように

This commit is contained in:
rca 2024-07-19 00:40:10 +09:00
parent b1d6a0ccae
commit 137624d7c2

View File

@ -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'
});