12 lines
177 B
Vue
12 lines
177 B
Vue
<template>
|
|
<router-view />
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
|
|
export default defineComponent({
|
|
name: 'OYS Borrow-a-Boat',
|
|
});
|
|
</script>
|