GroupStatusPermalink.vue 397 B

12345678910111213141516171819202122232425
  1. <template>
  2. <div class="group-status-permalink-component">
  3. <group-feed :group-id="gid" :permalinkMode="true" :permalinkId="sid" />
  4. </div>
  5. </template>
  6. <script type="text/javascript">
  7. import GroupFeed from '@/groups/GroupFeed.vue';
  8. export default {
  9. props: {
  10. gid: {
  11. type: String
  12. },
  13. sid: {
  14. type: String
  15. }
  16. },
  17. components: {
  18. "group-feed": GroupFeed
  19. }
  20. }
  21. </script>