Skip to content

十.TimePicker

<template>
    <div class="example-basic">
      <web-time-picker v-model="value1" placeholder="Arbitrary time" />
      <web-time-picker
        v-model="value2"
        arrow-control
        placeholder="Arbitrary time"
      />
    </div>
  </template>
  
  <script lang="ts" setup>
  import { ref } from 'vue'
  const value1 = ref()
  const value2 = ref()
  </script>
  
  <style>
  .example-basic .web-date-editor {
    margin: 8px;
  }
  </style>