index11.vue
565 Bytes
<template>
<div style="background-color:#f7f7f7;padding:10px 10px;">
<div style="padding: 0 20px;background-color:#fff;">
<div style="height:58px;line-height:58px;">
<div style="color:#0006"> <span>联机交易</span> <span style="padding:0 5px;">></span> <span style="color:#000000e6">对账分析</span></div>
</div>
<el-calendar v-model="value">
</el-calendar>
</div>
</div>
</template>
<script>
export default {
data() {
return {
value: new Date()
}
}
}
</script>
<style>
</style>