34 lines
541 B
Vue
34 lines
541 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<common>
|
||
|
<template #main> </template>
|
||
|
</common>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import { ref } from 'vue';
|
||
|
import common from '../components/common.vue';
|
||
|
|
||
|
/* --------------- data --------------- */
|
||
|
// #region
|
||
|
|
||
|
// #endregion
|
||
|
|
||
|
/* --------------- methods --------------- */
|
||
|
// #region
|
||
|
|
||
|
// #endregion
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.framing_service_content {
|
||
|
margin: 0 auto;
|
||
|
padding: 0 32px;
|
||
|
width: 1200px;
|
||
|
min-height: 600px;
|
||
|
border: 1px solid skyblue;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
</style>
|