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({
|
|
|
|
|
})
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
}
|