Could you help me understand or say if it is possible to do "circular" computed properties in Vue,
I want to divide date range into periods of certain durations, based on two criteria
- when
end date
is providedinterval (duration)
is calculateddateRange / period
- when
interval(duration)
is provided thenendDate
is calculatedstartDate + interval * period
see JSFiddle
I already try to addy second computed property for interval
but it went into loop and crashed the browser.