(type, value)
| 13 | currentDate4: '12:00', |
| 14 | loading: false, |
| 15 | formatter(type, value) { |
| 16 | if (type === 'year') { |
| 17 | return `${value}年`; |
| 18 | } |
| 19 | if (type === 'month') { |
| 20 | return `${value}月`; |
| 21 | } |
| 22 | return value; |
| 23 | }, |
| 24 | filter(type, options) { |
| 25 | if (type === 'minute') { |
| 26 | return options.filter((option) => option % 5 === 0); |
no outgoing calls
no test coverage detected