Skip to content
Snippets Groups Projects
Select Git revision
  • f9afbd3e0bb1b59dd9e4d40e9d847fe7c294f52b
  • main default protected
  • PC1
  • br_A
4 results

std.c

Blame
  • ClubPage.vue 631 B
    <template>
        <div class="clubView">
            <NavClub id="navClub">가나다</NavClub>
            <h1>클럽 페이지 입니다.</h1>
            <div id="clubMain">
                <router-view/>
            </div>
        </div>
    </template>
    
    <script>
    import NavClub from '@/components/NavClub.vue'
    import clubHomePage from '@/components/clubHomePage.vue'
    
    export default {
      name: 'clubpage',
      components: {
        'NavClub': NavClub
      },
      async created() {
            const res = await this.$http.get('http://jnhonlinux.ddns.net:3000/club')
            if(res.data.success == true) {
                this.data = res.data.result
            }
        },
    }
    </script>