Created
September 27, 2016 17:53
-
-
Save anonymous/ad69a0d147e76a5dc88742b8722309cb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <root-header></root-header> | |
| <!-- BEGIN CONTAINER --> | |
| <div class="page-container"> | |
| <root-sidebar></root-sidebar> | |
| <!-- BEGIN CONTENT --> | |
| <div class="page-content-wrapper"> | |
| <!-- BEGIN CONTENT BODY --> | |
| <slot></slot> | |
| <!-- END CONTENT BODY --> | |
| </div> | |
| <!-- END CONTENT --> | |
| </div> | |
| <!-- END CONTAINER --> | |
| <root-footer></root-footer> | |
| </template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| import AppContainer from './AppContainer.vue' | |
| expost default { | |
| components: { AppContainer } | |
| }; | |
| </script> | |
| <template> | |
| <app-container> | |
| Home | |
| </app-container> | |
| </template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment