Skip to content

Instantly share code, notes, and snippets.

@fpontef
Forked from anonymous/AppContainer.vue
Created September 27, 2016 19:27
Show Gist options
  • Save fpontef/0322b319aa670bf271eee32988b490bb to your computer and use it in GitHub Desktop.
Save fpontef/0322b319aa670bf271eee32988b490bb to your computer and use it in GitHub Desktop.
<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>
<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