18 lines
343 B
Vue
18 lines
343 B
Vue
<template>
|
|
<div class="hero-body">
|
|
<div class="container has-text-centered">
|
|
<h1 class="title is-1 has-text-primary">
|
|
eHandyBlog
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script lang="ts">
|
|
import { Vue, Component } from 'nuxt-property-decorator'
|
|
|
|
@Component
|
|
export default class MinimalBanner extends Vue {
|
|
|
|
}
|
|
</script>
|