【发布时间】:2020-04-21 12:38:37
【问题描述】:
我正在使用 Vuetify 日历进行约会。我尝试使用插槽自定义日历的默认标题,但没有得到预期的结果。想要自定义它,如图所示... 代码
<v-calendar ref="calendar" :now="today" :value="today" :events="events" color="primary" type="week">
<template v-slot:day-header="{date}">
<v-btn color="success">{{date}}</v-btn>
</template>
相同的代码笔:https://codepen.io/spider007/pen/YzyGgPY
【问题讨论】:
-
我认为你必须使用
custom-weekly类型并自定义全天时段 -
你必须使用 hide-header
标签: javascript vue.js vuetify.js