1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-13 09:50:40 +01:00
2018-01-10 20:45:02 -08:00

16 lines
236 B
HTML

<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>