LoginSignup
28
13

More than 3 years have passed since last update.

Vue Routerのreload実装する

Last updated at Posted at 2019-05-30

Vue Routerにはreload機能がないため、自作スクリプト


methods: {
    reload() {
        this.$router.go({path: this.$router.currentRoute.path, force: true});
    },
    something() {
        // reloadを呼び出すことで画面リロード
        this.reload();
    }
}
28
13
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
28
13