21 lines
348 B
Vue
21 lines
348 B
Vue
<script setup lang="ts">
|
|
import '@/components/css/app.css'
|
|
import MyHead from "@/components/MyHead.vue";
|
|
import MyFooter from "@/components/MyFooter.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<div class="common-layout">
|
|
<my-head/>
|
|
<div class="router-view">
|
|
<RouterView/>
|
|
</div>
|
|
<my-footer/>
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|