32 lines
551 B
Vue
32 lines
551 B
Vue
<template>
|
|
<div>
|
|
<md-toolbar class="md-transparent" md-elevation="0">
|
|
<span class="md-title">VideON</span>
|
|
|
|
|
|
</md-toolbar>
|
|
|
|
<md-list>
|
|
<md-list-item>
|
|
<md-avatar class="md-avatar-icon">J</md-avatar>
|
|
<span class="md-list-item-text">Joska</span>
|
|
</md-list-item>
|
|
|
|
<md-list-item>
|
|
<md-button class="md-raised md-accent">Logout</md-button>
|
|
</md-list-item>
|
|
|
|
</md-list>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "WorkspaceDrawerContent"
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |