mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
17 lines
250 B
Vue
17 lines
250 B
Vue
<template>
|
|
<div>
|
|
<div>my groups</div>
|
|
<group-teaser />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import GroupTeaser from '~/components/GroupTeaser/GroupTeaser.vue'
|
|
|
|
export default {
|
|
name: 'MyGroups',
|
|
components: {
|
|
GroupTeaser,
|
|
},
|
|
}
|
|
</script>
|