Skip to content
Snippets Groups Projects
Select Git revision
  • main default protected
  • reserve-item-timeframe
  • fix-userprofile-image
  • filter
  • my_communities
  • deploy protected
6 results

CommunityList.vue

Blame
  • CommunityList.vue 448 B
    <template>
      <ul>
        <li v-for="community in communities" :key="community">
          <CommunityListItem :community="community" :member="member" />
        </li>
      </ul>
    </template>
    
    <script>
    import CommunityListItem from "@/components/CommunityComponents/CommunityListItem.vue";
    //import Join
    
    export default {
      name: "CommunityList",
      props: {
        communities: Array,
        member: Boolean,
      },
      components: {
        CommunityListItem,
      },
    };
    </script>