Skip to content

Instantly share code, notes, and snippets.

Created September 27, 2016 17:53
Show Gist options
  • Select an option

  • Save anonymous/ad69a0d147e76a5dc88742b8722309cb to your computer and use it in GitHub Desktop.

Select an option

Save anonymous/ad69a0d147e76a5dc88742b8722309cb to your computer and use it in GitHub Desktop.

Revisions

  1. @invalid-email-address Anonymous created this gist Sep 27, 2016.
    16 changes: 16 additions & 0 deletions AppContainer.vue
    Original 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>
    13 changes: 13 additions & 0 deletions Main.vue
    Original 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>