- ordering some functions
- fix error TS2339
quasar.extensions.json was the problem !
inside had:
{
"@quasar/typescript": {
"webpack": "plugin",
"rename": true
}
}
12 lines
244 B
TypeScript
12 lines
244 B
TypeScript
import Vue from 'vue'
|
|
import { Component } from 'vue-property-decorator'
|
|
import { tools } from '@src/store/Modules/tools'
|
|
|
|
@Component({
|
|
})
|
|
export default class Logo extends Vue {
|
|
get logoimg() {
|
|
return '../../' + tools.getimglogo()
|
|
}
|
|
}
|