[Vue.js] 페이지 새로고침 함수

[Vue.js] 페이지 새로고침 함수

SPA(Single Page Application)을 만들었다면 일반적인 새로고침 방식(ex : location.href = location.href)은 권장되지 않는다.

Vue.js 에서 페이지 새로고침은 this.$router.go(); 로 한다.

<script>
export default {
    methods : {
        refreshAll() {
            // 새로고침
            this.$router.go();
        }
    }
};
</script>