pinafore/routes/_components/Avatar.html

16 lines
236 B
HTML
Raw Normal View History

2018-01-11 05:45:02 +01:00
<img src="{{account.avatar_static}}">
<style>
img {
width: 50px;
height: 50px;
margin: 10px auto;
border-radius: 4px;
}
</style>
<script>
export default {
data: () => ({
account: null
})
}
</script>