update
This commit is contained in:
27
t_global_Fine_temp6/src/views/CommonLayout.vue
Normal file
27
t_global_Fine_temp6/src/views/CommonLayout.vue
Normal file
@@ -0,0 +1,27 @@
|
||||
<script setup lang="ts">
|
||||
import { footerHtml, headerHtml } from "@/utils/common";
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<body>
|
||||
<div class="v-application v-application--is-ltr theme--light">
|
||||
<div class="v-application--wrap">
|
||||
<header
|
||||
class="container-fluid"
|
||||
id="banner"
|
||||
role="banner"
|
||||
v-html="headerHtml"
|
||||
></header>
|
||||
|
||||
<main style="padding-top: 0px;">
|
||||
<div style="">
|
||||
<slot></slot>
|
||||
</div>
|
||||
</main>
|
||||
<footer class="container-fluid" v-html="footerHtml"></footer>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</template>
|
||||
|
||||
<style></style>
|
||||
Reference in New Issue
Block a user