add exemple routing and store

This commit is contained in:
grimhilt
2023-02-24 15:47:10 +01:00
parent 75dd9afdaf
commit 0692f8caa5
20 changed files with 418 additions and 50 deletions

View File

@@ -0,0 +1,20 @@
<template>
<img :src="require('../../assets/'+ url)" >
</template>
<script>
export default {
name: 'BaseAvatar',
props: {
url: String
}
}
</script>
<style scoped>
img {
width: 32px;
height: 32px;
}
</style>