+
@@ -21,14 +21,14 @@ export default {
Pins,
},
created() {
- this.initializeUser();
+ this.initializeBoard();
},
beforeRouteUpdate(to, from, next) {
- this.initializeUser();
+ this.initializeBoard();
next();
},
methods: {
- initializeUser() {
+ initializeBoard() {
this.filters.userFilter = this.$route.params.user;
},
},