Newer
Older
HuangJiPC / src / pages / index.vue
@zhangdeliang zhangdeliang on 21 Jun 464 bytes update
<template>
  <div style="height: 100vh; position: relative;overflow:hidden;background: #01364D;">
    <router-view></router-view>
  </div>

</template>
<script>
import { h, ref, reactive, onMounted, onBeforeUnmount, toRefs } from "vue";

export default {
  components: {},
  setup() {
    onMounted(() => {

    });
    onBeforeUnmount(() => {

    });
    return {

    };
  },
  computed: {

  },
};
</script>
<style lang="less">
@import "./index.less";
</style>