13 lines
259 B
TypeScript
13 lines
259 B
TypeScript
import Vue from 'vue'
|
|
import { Component } from 'vue-property-decorator'
|
|
import { tools } from '@src/store/Modules/tools'
|
|
|
|
@Component({
|
|
name: 'Logo'
|
|
})
|
|
export default class Logo extends Vue {
|
|
get logoimg() {
|
|
return '../../' + tools.getimglogo()
|
|
}
|
|
}
|