home.vue 719 Bytes
<template>
  <div class="main">
    <el-row class="w100">
      <el-col :span="8">
        <left-page/>
      </el-col>
      <el-col :span="8">
        <center-page/>
      </el-col>
      <el-col :span="8">
        <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 lang="scss" scoped>
</style>