2019-01-08 01:22:09 +01:00
|
|
|
import Vue from 'vue'
|
|
|
|
|
import { Component } from 'vue-property-decorator'
|
2019-03-21 20:43:15 +01:00
|
|
|
import { tools } from '@src/store/Modules/tools'
|
2019-01-14 22:40:30 +01:00
|
|
|
|
2019-01-08 01:22:09 +01:00
|
|
|
@Component({
|
2019-04-25 00:30:13 +02:00
|
|
|
name: 'Logo'
|
2019-01-08 01:22:09 +01:00
|
|
|
})
|
|
|
|
|
export default class Logo extends Vue {
|
2019-03-21 20:43:15 +01:00
|
|
|
get logoimg() {
|
|
|
|
|
return '../../' + tools.getimglogo()
|
2019-01-08 01:22:09 +01:00
|
|
|
}
|
2019-05-01 11:53:12 +02:00
|
|
|
|
|
|
|
|
get logoalt() {
|
|
|
|
|
return process.env.APP_NAME
|
|
|
|
|
}
|
2019-01-08 01:22:09 +01:00
|
|
|
}
|