home.vue 827 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 {getYS000} from '@/api/server.js'

const fullUrl = window.location.href;
const type = ref(null)
// url.value = window.location.host + '/pc.html#/match/list/'
handelGetYS000()
console.log(window.location.host)


async function handelGetYS000() {
  const res = await getYS000()
  type.value = res.data.IFBASE
  console.log(res)
}


</script>

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