- Chart Maps Nationality

- Username lowercase
- Statistics
- Telegram
This commit is contained in:
Paolo Arena
2020-01-27 15:09:11 +01:00
parent 415c431270
commit 3653b8309c
71 changed files with 1743 additions and 143 deletions

View File

@@ -1,5 +1,5 @@
import Vue from 'vue'
import { Component } from 'vue-property-decorator'
import { Component, Prop } from 'vue-property-decorator'
import { tools } from '@src/store/Modules/tools'
import { toolsext } from '@src/store/Modules/toolsext'
@@ -7,6 +7,8 @@ import { toolsext } from '@src/store/Modules/toolsext'
name: 'Logo'
})
export default class Logo extends Vue {
@Prop({ required: false, default: '' }) public mystyle: boolean
get logoimg() {
return '../../' + tools.getimglogo()
}

View File

@@ -1,6 +1,6 @@
<template>
<div id="logo">
<img id="logoimg" :alt="logoalt" :src=logoimg>
<img id="logoimg" :alt="logoalt" :src=logoimg :style="mystyle">
</div>
</template>
<script lang="ts" src="./logo.ts">