12 lines
162 B
Cheetah
12 lines
162 B
Cheetah
<template>
|
|
<div>
|
|
<main>
|
|
<router-view />
|
|
</main>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { RouterView } from 'vue-router';
|
|
</script>
|