Once confirmed in Vue 3 Composition API
router.push('/IssueList');
When arriving at the IssueList page, I want my issue-incoming
and issue-send
components to refresh.
Although I am redirecting to the page, the IssueList page does not refresh. How can I achieve that?
The code on my IssueList page is shown below.
<template>
<div>
<div class="card">
<h5>Konu Listesi</h5>
<Button label="Yeni Konu Oluştur" class="p-button-success p-button-outlined mb-2" icon="pi pi-plus"
@click="newIssue"></Button>
<TabView ref="tabview1">
<TabPanel header="Bana Gelenler">
<issue-incoming></issue-incoming>
</TabPanel>
<TabPanel header="Benim Yazdıklarım">
<issue-send ></issue-send>
</TabPanel>
</TabView>
</div>
</div>
</template>