pixelfed/resources/assets/js/components/GroupStatusPermalink.vue

26 lines
397 B
Vue
Raw Normal View History

2024-07-10 06:00:09 +00:00
<template>
<div class="group-status-permalink-component">
<group-feed :group-id="gid" :permalinkMode="true" :permalinkId="sid" />
</div>
</template>
<script type="text/javascript">
import GroupFeed from '@/groups/GroupFeed.vue';
export default {
props: {
gid: {
type: String
},
sid: {
type: String
}
},
components: {
"group-feed": GroupFeed
}
}
</script>