Created
September 27, 2016 17:53
-
-
Save anonymous/ad69a0d147e76a5dc88742b8722309cb to your computer and use it in GitHub Desktop.
Revisions
-
There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ <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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ <script> import AppContainer from './AppContainer.vue' expost default { components: { AppContainer } }; </script> <template> <app-container> Home </app-container> </template>