1
0
mirror of https://github.com/nolanlawson/pinafore synced 2024-12-15 20:03:25 +01:00
Pinafore-Web-Client-Frontend/routes/_components/Avatar.html
2018-01-11 00:26:35 -08:00

16 lines
236 B
HTML

<img src="{{account.avatar_static}}">
<style>
img {
width: 48px;
height: 48px;
margin: 10px auto;
border-radius: 4px;
}
</style>
<script>
export default {
data: () => ({
account: null
})
}
</script>