Skip to content

Commit

Permalink
modify: Separated modal-button component to mix-modal-screen and mix-…
Browse files Browse the repository at this point in the history
…action-button.
  • Loading branch information
yuki153 committed Feb 3, 2019
1 parent 9f5c265 commit a986f59
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions src/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,25 @@
<app-loadding :isHide="isUser"/>
<section class="main__section">
<todo-list/>
<modal-button/>
<mix-modal-screen/>
<mix-action-button/>
</section>
</div>
</template>

<script>
import firebase from "~/plugins/firebase";
import AppLoadding from '~/components/simple/app-loading'
import ModalButton from '~/components/mix/modal-button'
import TodoList from '~/components/mix/todo-list'
import AppLoadding from '~/components/simple/app-loading';
import MixActionButton from '~/components/mix/mix-action-button';
import MixModalScreen from '~/components/mix/mix-modal-screen';
import TodoList from '~/components/mix/todo-list';
export default {
layout: 'default',
components: {
AppLoadding,
ModalButton,
MixActionButton,
MixModalScreen,
TodoList,
},
data() {
Expand Down

0 comments on commit a986f59

Please sign in to comment.