refactored the layout:

removed fixed head, replaced with flex
moved pagetitle and searchform to headerbottom region
added Common store to vuejs with pagetitle data
added pagetitle vuejs component
This commit is contained in:
2019-06-22 16:13:47 +02:00
parent 625f6eb84b
commit 75b908ba26
21 changed files with 238 additions and 1334 deletions

View File

@@ -1,5 +1,6 @@
import Vue from 'vue'
import Vuex from 'vuex'
import Common from './modules/common'
import User from './modules/user'
import Search from './modules/search'
@@ -8,6 +9,7 @@ import Search from './modules/search'
Vue.use(Vuex)
export default new Vuex.Store({
modules: {
Common,
User,
Search
}