Homepage-imsyy/src/views/Main/Right.vue
2022-11-15 22:19:29 +08:00

24 lines
447 B
Vue

<template>
<div class="right">
<!-- 功能区 -->
<Func />
<!-- 网站链接 -->
<Link />
</div>
</template>
<script setup>
import { reactive, ref, onMounted } from "vue";
import Func from "@/views/Func/index.vue";
import Link from "@/components/Links/index.vue";
import { mainStore } from "@/store";
const store = mainStore();
</script>
<style lang="scss" scoped>
.right {
flex: 1 0 0%;
margin-left: 0.75rem;
}
</style>