小智 5
只需使用window.location.reload().
<template>
<button @click="reloadPage">Reload</button>
</template>
<script>
export default {
...
methods: {
reloadPage() {
window.location.reload();
}
}
}
</script>
Run Code Online (Sandbox Code Playgroud)