18 lines
324 B
Vue
18 lines
324 B
Vue
<script setup lang="ts">
|
|
import QqazkTop from "~/components/tools/qqazk/QqazkTop.vue";
|
|
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="common-layout">
|
|
<el-container>
|
|
<el-header><QqazkTop></QqazkTop></el-header>
|
|
<el-main><NuxtPage></NuxtPage></el-main>
|
|
</el-container>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style> |