balbla page displaying article as cards with infinite loading

This commit is contained in:
2019-07-13 15:40:14 +02:00
parent a8027261e3
commit a926595856
5 changed files with 546 additions and 41 deletions

View File

@@ -57,13 +57,7 @@ import 'theme/assets/styles/main.scss'
function initVRouter(){
// we need this to update the title while using history nav
router.beforeEach((to, from, next) => {
// console.log('router beforeEach');
// console.log(to);
// console.log(from);
// console.log(next);
store.commit('Common/setPagetitle', to.name)
store.commit('Common/setPagetitle', to.name != 'home' ? to.name : null)
next();
})
}