刷新标签页(不会整页刷新)
vue
<script setup lang="ts">
const mainPage = useMainPage();
function reload() {
mainPage.reload();
}
</script>
<template>
<el-button @click="reload"> 刷新 </el-button>
</template>