File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
src/components/mdDatePicker Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 41
41
<md-button class =" md-current-date" @click.native =" showMonthPicker" >{{ locale.months[month.getMonth()] }} {{ month.getFullYear() }}</md-button >
42
42
43
43
<div class =" md-datepicker-week-days" >
44
- <span v-for =" day in locale.shorterDays" >{{ day }}</span >
44
+ <span v-for =" day in locale.shorterDays" v-once >{{ day }}</span >
45
45
</div >
46
46
47
47
<div class =" md-datepicker-days" >
48
- <span class =" md-empty" v-for =" day in startOfMonth(month).getDay()" ></span >
48
+ <span class =" md-empty" v-for =" day in startOfMonth(month).getDay()" v-once ></span >
49
49
50
50
<md-button
51
51
class =" md-icon-button"
55
55
'md-today': isToday(day),
56
56
'md-selected': isSelectedDay(day)
57
57
}"
58
- @click.native =" setDate(day)" >
58
+ @click.native =" setDate(day)"
59
+ v-once >
59
60
{{ day }}
60
61
</md-button >
61
62
</div >
You can’t perform that action at this time.
0 commit comments