mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
19 lines
255 B
Vue
19 lines
255 B
Vue
<template>
|
|
<div>
|
|
<h2>Neue Gruppe</h2>
|
|
|
|
|
|
<new-group-form style="padding-top: 30px"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import NewGroupForm from '~/components/GroupForm/GroupForm'
|
|
|
|
export default {
|
|
components: {
|
|
NewGroupForm,
|
|
},
|
|
}
|
|
</script>
|