home.vue 716 Bytes
<template>
  <div class="main">
    <el-row class="w100">
      <el-col :span="7">
        <left-page/>
      </el-col>
      <el-col :span="10">
        <center-page/>
      </el-col>
      <el-col :span="7">
        <right-page/>
      </el-col>
    </el-row>
  </div>

</template>

<script setup>
import LeftPage from "@/viewsPc/vip/leftPage"
import CenterPage from "@/viewsPc/vip/centerPage"
import RightPage from "@/viewsPc/vip/rightPage"
import {onBeforeUnmount, ref} from "vue";
import {useStorage} from "@vueuse/core/index";
import {getCurrentInstance, onMounted,onUnmounted} from "@vue/runtime-core";
const {proxy} = getCurrentInstance()


onMounted(()=>{

})
</script>

<style scoped lang="scss">
</style>