UNPKG

v-calendar

Version:

A clean and extendable plugin for building simple attributed calendars in Vue.js.

12 lines (10 loc) 250 B
import { isFunction } from '../_'; export const safeScopedSlotMixin = { methods: { safeScopedSlot(name, args, def = null) { return isFunction(this.$scopedSlots[name]) ? this.$scopedSlots[name](args) : def; }, }, };