empower_front/src/views/system/SystemMain.vue
2025-06-17 17:38:50 +08:00

11 lines
219 B
Vue

<script setup>
import { useRoute } from 'vue-router';
import SystemCard from './components/SystemCard.vue';
const route = useRoute()
</script>
<template>
<SystemCard />
</template>
<style lang='scss' scoped></style>