File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1+ # v0.7.4
2+ ## Bug Fixes
3+ * Redress issue introduced by v0.7.3."
4+
15# v0.7.3
26## Bug Fixes
37* Fix scoped slot usage in ` v-date-picker ` render function. Closes #83 .
Original file line number Diff line number Diff line change 11{
22 "name" : " v-calendar" ,
3- "version" : " 0.7.3 " ,
3+ "version" : " 0.7.4 " ,
44 "description" : " A clean and extendable plugin for building simple attributed calendars in Vue.js." ,
55 "keywords" : [
66 " vue" ,
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ export default {
4343 },
4444 );
4545 if (this .isInline ) return getPickerComponent ();
46+ console .log (this .$scopedSlots );
4647 return h (' popover' , {
4748 attrs: {
4849 isExpanded: this .popoverExpanded ,
@@ -58,10 +59,10 @@ export default {
5859 ' update:forceHidden ' : val => this .popoverForceHidden = val,
5960 },
6061 }, [
61- this .$scopedSlots .default ({
62+ ( isFunction ( this . $scopedSlots . default ) && this .$scopedSlots .default ({
6263 inputValue: this .inputValue ,
6364 updateValue: this .updateValue ,
64- }) || [
65+ })) || [
6566 h (' input' , {
6667 ref: ' input' ,
6768 class: this .inputProps_ .class ,
You can’t perform that action at this time.
0 commit comments