2018-01-14 19:36:31 +00:00
|
|
|
<img alt="Profile picture for {{account.acct}}" src="{{account.avatar_static}}">
|
2018-01-11 04:45:02 +00:00
|
|
|
<style>
|
|
|
|
img {
|
2018-01-11 08:26:35 +00:00
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
2018-01-11 04:45:02 +00:00
|
|
|
margin: 10px auto;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data: () => ({
|
|
|
|
account: null
|
|
|
|
})
|
|
|
|
}
|
|
|
|
</script>
|