15 lines
353 B
Vue
15 lines
353 B
Vue
<template>
|
|
<Home>
|
|
<template #header>
|
|
<section class="py-2 bg-primary text-white">
|
|
<div class="banner-container d-flex justify-content-center">
|
|
<img class="banner" src="/static/img/rmo/banner.jpg" />
|
|
</div>
|
|
</section>
|
|
</template>
|
|
</Home>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Home from "@/rmo/content/Home.vue";
|
|
</script>
|