11 lines
219 B
Vue
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> |