29 lines
469 B
Vue
29 lines
469 B
Vue
|
<template>
|
||
|
<section>
|
||
|
<common>
|
||
|
<template #main>
|
||
|
<div>
|
||
|
<el-card shadow="hover"> </el-card>
|
||
|
</div>
|
||
|
</template>
|
||
|
</common>
|
||
|
</section>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import { ref } from 'vue';
|
||
|
import Common from './components/common.vue';
|
||
|
|
||
|
/* --------------- data --------------- */
|
||
|
// #region
|
||
|
|
||
|
// #endregion
|
||
|
|
||
|
/* --------------- methods --------------- */
|
||
|
// #region
|
||
|
|
||
|
// #endregion
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped></style>
|