25 lines
505 B
Vue
25 lines
505 B
Vue
<template>
|
|
<section>
|
|
<header>header</header>
|
|
<nuxt />
|
|
<footer>footer</footer>
|
|
</section>
|
|
</template>
|
|
<script lang="ts">
|
|
import { Component } from 'vue-property-decorator'
|
|
import { CustomFoComponent } from '@/components/custom-fo-component'
|
|
|
|
@Component
|
|
export default class extends CustomFoComponent {
|
|
// #region variables
|
|
// #endregion
|
|
// #region hooks
|
|
// #endregion
|
|
// #region methods
|
|
// #endregion
|
|
// #region watches
|
|
// #endregion
|
|
}
|
|
</script>
|
|
<style lang="scss"></style>
|