UNPKG

timered-counter

Version:

Make the value change more vivid and natural

13 lines 675 B
import { TimeredCounterNumber } from './timered-counter-number.js'; import { TimeredCounterDatetimeDuration } from './timered-counter-datetime-duration.js'; import { TimeredCounterString } from './timered-counter-string.js'; const TimeredCounterPlugin = { install: (app) => { app.component('TimeredCounterNumber', TimeredCounterNumber); app.component('TimeredCounterDatetimeDuration', TimeredCounterDatetimeDuration); app.component('TimeredCounterString', TimeredCounterString); }, }; export { TimeredCounterNumber, TimeredCounterString, TimeredCounterDatetimeDuration, }; export default TimeredCounterPlugin; //# sourceMappingURL=index.js.map