- Fix CImgTitle positioning

- CPreloadImage
This commit is contained in:
Paolo Arena
2019-09-19 22:56:19 +02:00
parent 04f4a83d6c
commit 3459f00a3b
18 changed files with 208 additions and 86 deletions

View File

@@ -3,6 +3,7 @@ import { Watch } from 'vue-property-decorator'
import { GlobalStore } from '../../store/Modules'
import Component from 'vue-class-component'
import { static_data } from '../../db/static_data'
import { tools } from '../../store/Modules/tools'
export default class MenuOne extends Vue {
@@ -17,15 +18,16 @@ export default class MenuOne extends Vue {
// return this.$route.path
// }
get getmenu() {
return GlobalStore.getters.getmenu
get tools() {
return tools
}
public getLabelByItem(item) {
if (!!item.name)
return this.$t(item.name)
else
return item.text
get mythis() {
return this
}
get getmenu() {
return GlobalStore.getters.getmenu
}
public setParentVisibilityBasedOnRoute(parent) {