Skip to content

Instantly share code, notes, and snippets.

Created September 27, 2016 17:53
Show Gist options
  • Save anonymous/ad69a0d147e76a5dc88742b8722309cb to your computer and use it in GitHub Desktop.
Save anonymous/ad69a0d147e76a5dc88742b8722309cb 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