Skip to content

Instantly share code, notes, and snippets.

@DesKevinMendez
Created September 8, 2019 19:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DesKevinMendez/696d058a1a9610fad3ffbf777b113cf4 to your computer and use it in GitHub Desktop.
Save DesKevinMendez/696d058a1a9610fad3ffbf777b113cf4 to your computer and use it in GitHub Desktop.
Blog para views en laravel-jwt-vue-medium
<template>
<!-- Post Content -->
<section class="container">
<div class="row">
<div class="col-lg-12 col-md-10 mx-auto">
<blogContent/>
<blogContent/>
<blogContent/>
</div>
</div>
</section>
</template>
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
import blogContent from '@/components/blog/blog.vue';
@Component({
name: 'Blogs',
data() {
return {
}
},
components: {
blogContent,
},
})
export default class Home extends Vue {}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment