1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-01-31 14:04:50 +01:00

16 lines
236 B
HTML
Raw Normal View History

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