javascript
How to reload/refresh a webpage
How to reload/refresh a webpage in Vue.js
<template>
<button @click="reloadPage">Reload</button>
</template>
<script>
export default {
...
methods: {
reloadPage() {
this.$router.go();
}
}
}
</script>
Was this helpful?
Similar Posts