How to detect page is refreshed on vue?
I try like this : created() { window.addEventListener('beforeunload', function(event) { event.returnValue = 'Write something' this.$router.push('/') }) }, the mes...