Skip to content

Instantly share code, notes, and snippets.

@hibuno
Created January 21, 2018 15:49
Show Gist options
  • Save hibuno/9ab6edc4a1b23e0efe793df5fdf34104 to your computer and use it in GitHub Desktop.
Save hibuno/9ab6edc4a1b23e0efe793df5fdf34104 to your computer and use it in GitHub Desktop.
Next part of blog.vue file from creating page on Nuxt JS
<template>
<div>
<!-- Navigation -->
<Navigation/>
<!-- Content -->
<div class="container">
<div class="row">
<div class="col-md-9 col-lg-9">
<!-- Content -->
<nuxt/>
</div>
<div class="col-md-3 col-lg-3">
<!-- Sidebar -->
<h4>Ini side bar</h4>
</div>
</div>
</div>
<!-- Footer -->
<h4>Ini footer</h4>
</div>
</template>
<script>
import Navigation from '~/components/navigation.vue'
export default {
components: {
Navigation
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment