15 lines
242 B
Vue
15 lines
242 B
Vue
<template>
|
|
<expires-statistics-base
|
|
title="近3个月临到期"
|
|
:month="3"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
import expiresStatisticsBase from './expiresStatisticsBase'
|
|
|
|
export default {
|
|
components: { expiresStatisticsBase }
|
|
}
|
|
</script>
|