.$reset()
// APIデータ取得
(async () => {
pageLoading.isLoading = true;
// store初期化
exampleState.$reset();
await api.get('apiUrl').then((response) => {
if (response.data.result) exampleState.setState(response.data.result
})
pageLoading.isLoading = false;
})();