mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 14:56:06 +02:00
6bda44be52
* refactor: Organize Project Structure * fix * fix * rm security * fix
33 lines
1.0 KiB
Vue
33 lines
1.0 KiB
Vue
<template>
|
|
<div id="chart" class="x-container">
|
|
<div class="options-container" style="margin-top: 0">
|
|
<span class="header">{{ $t('view.charts.header') }}</span>
|
|
</div>
|
|
<InstanceActivity
|
|
:get-world-name="getWorldName"
|
|
:is-dark-mode="isDarkMode"
|
|
:dt-hour12="dtHour12"
|
|
:friends-map="friendsMap"
|
|
:local-favorite-friends="localFavoriteFriends"
|
|
@open-previous-instance-info-dialog="$emit('open-previous-instance-info-dialog', $event)" />
|
|
<el-backtop target="#chart" :right="30" :bottom="30"></el-backtop>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import InstanceActivity from './components/InstanceActivity.vue';
|
|
export default {
|
|
name: 'ChartsTab',
|
|
components: {
|
|
InstanceActivity
|
|
},
|
|
props: {
|
|
getWorldName: Function,
|
|
isDarkMode: Boolean,
|
|
dtHour12: Boolean,
|
|
friendsMap: Map,
|
|
localFavoriteFriends: Set
|
|
}
|
|
};
|
|
</script>
|