CviLux_fe/src/views/system/SystemMain.vue
2024-10-12 09:59:46 -04: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>