2020-11-20 21:44:02 +00:00
|
|
|
<template>
|
|
|
|
<div class="sidebar pinned">
|
|
|
|
<div class="panel">
|
|
|
|
<div class="pin"></div>
|
2020-11-23 12:13:28 +00:00
|
|
|
<WorldList></WorldList>
|
2020-11-20 21:44:02 +00:00
|
|
|
<PlayerList></PlayerList>
|
|
|
|
<div class="hitbar"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2020-11-23 12:13:28 +00:00
|
|
|
<script lang="ts">
|
|
|
|
import { Options, Vue } from 'vue-class-component';
|
|
|
|
import PlayerList from './PlayerList.vue';
|
|
|
|
import WorldList from './WorldList.vue';
|
|
|
|
|
|
|
|
@Options({
|
|
|
|
components: {
|
|
|
|
PlayerList,
|
|
|
|
WorldList,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
export default class Sidebar extends Vue {
|
|
|
|
|
2020-11-20 21:44:02 +00:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
</style>
|