|
|
@ -63,14 +63,14 @@ |
|
|
|
</md-menu> |
|
|
|
<div style="padding: 1% 0%"/> |
|
|
|
<!--ALT ACCOUNTS--> |
|
|
|
<ProfileViewer :steam64="player['steamids']['steam64']" ref="alt_ipv"/> |
|
|
|
<md-button v-on:click="loadingAltList()" v-if="this.$API.admin.permition.alt === true && altaccount.loaded === false" class="md-raised btn-strange" style="margin: 0% 0%" md-menu-trigger>{{altaccount.loading?'Загрузка':'Альт.аккаунты'}}</md-button> |
|
|
|
<md-menu v-if="this.$API.admin.permition.alt === true && altaccount.loaded === true" md-direction="bottom-start" md-size="auto"> |
|
|
|
<md-button class="md-raised btn-strange" md-menu-trigger>Альт.аккаунты</md-button> |
|
|
|
<md-menu-content> |
|
|
|
<md-menu-item class="clickable" v-for="b in altaccount.store" :key="b" v-on:click="this.$refs.alt_ipv.getPlayerWithSteam(b)">{{b}}</md-menu-item> |
|
|
|
<md-menu-item v-for="b in altaccount.store" :key="b" v-on:click="$refs.alt_ipv.getPlayerWithSteam(b)">{{b}}</md-menu-item> |
|
|
|
</md-menu-content> |
|
|
|
</md-menu> |
|
|
|
<ProfileViewer_Internal :steam64="player['steamids']['steam64']" ref="alt_ipv" id="alt_ipv"/> |
|
|
|
</div> |
|
|
|
<div :class="`md-layout-item md-size-${f_size} md-small-size-100`"> |
|
|
|
<div style="justify-content: right; display: flex; padding: 10% 0%"> |
|
|
@ -95,12 +95,11 @@ |
|
|
|
import DiscordSvg from "@/components/Others/CustomSvg/DiscordSvg.vue"; |
|
|
|
import SteamSvg from "@/components/Others/CustomSvg/SteamSvg.vue"; |
|
|
|
import axios from "axios"; |
|
|
|
import ProfileViewer from "@/components/Others/Loader/ProfileViewer.vue"; |
|
|
|
import SnackLoader from "@/components/Others/Loader/SnackLoader.vue"; |
|
|
|
|
|
|
|
export default { |
|
|
|
name: "ProfileContainer", |
|
|
|
components: {SnackLoader, ProfileViewer, SteamSvg, DiscordSvg}, |
|
|
|
components: {SnackLoader, ProfileViewer_Internal: () => import("@/components/Others/Loader/ProfileViewer.vue"), SteamSvg, DiscordSvg}, |
|
|
|
props: { |
|
|
|
player: Object, |
|
|
|
f_size: { |
|
|
|