Skip to content

Instantly share code, notes, and snippets.

@RoySegall
Last active December 7, 2019 08:28
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 RoySegall/30dc3ed03a9fab75d85b7090acff2c26 to your computer and use it in GitHub Desktop.
Save RoySegall/30dc3ed03a9fab75d85b7090acff2c26 to your computer and use it in GitHub Desktop.
<template>
<div class="home">
<h1>Masonite's blog</h1>
<Blogs />
</div>
</template>
<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
import Blogs from "@/components/Blogs.vue"; // @ is an alias to /src
@Component({
components: {
Blogs
}
})
export default class Home extends Vue {}
</script>
<style lang="scss">
h1 {
padding-bottom: .5em;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment