15 lines
195 B
Vue
15 lines
195 B
Vue
<template>
|
|
<Card title="趋势图">
|
|
趋势图
|
|
</Card>
|
|
</template>
|
|
|
|
<script>
|
|
import Card from '../components/Card.vue'
|
|
export default {
|
|
components: { Card }
|
|
}
|
|
</script>
|
|
|
|
<style></style>
|