Skip to content

Commit

Permalink
integrating vue files to app.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
Maryadi committed Feb 9, 2018
1 parent acec53f commit 68d245e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/App.vue
@@ -1,11 +1,20 @@
<template>
<div id="app">

<main-team></main-team>
<bijuu-team></bijuu-team>
</div>
</template>

<script>
import MainTeam from '../components/main_team_member.vue';
import BijuuTeam from '../components/bijuu_team.vue';
export default {
components: {
'main-team' : MainTeam,
'bijuu-team' : BijuuTeam
},
name: 'app',
data () {
return {
Expand Down

0 comments on commit 68d245e

Please sign in to comment.