15 lines
201 B
Vue

<template>
<Card title="质量检测">
质量检测
</Card>
</template>
<script>
import Card from '../components/Card.vue'
export default {
components: { Card }
}
</script>
<style></style>