# Event start time

  <vac :start-time="new Date().getTime() + 10000" :end-time="new Date().getTime() + 20000">
    <span
      slot="preheat"
      slot-scope="{ startTime }">
        {{ `Event start time: ${new Date(startTime)}` }}
      </span>
    <span
      slot="process"
      slot-scope="{ timeObj }">
        {{ `Start left time: ${timeObj.ceil.s}s` }}
      </span>
      <span slot="finish"><button type="button">Go Go Go!!!</button></span>
  </vac>