0.0.25-beta04 β€’ Published 2 years ago

re-time-picker v0.0.25-beta04

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

A time-picker component base on vue 3 with typescript.

Installation

NPM

npm install re-time-picker

YARN

yarn add re-time-picker

PNPM

pnpm install re-time-picker

Using

Global

In the main file

import { createApp } from 'vue';
import ReTimePicker from 're-time-picker';
import App from './App.vue';
import 're-time-picker/dist/style.css';

const app = createApp(App);
app.component('ReTimePicker', ReTimePicker);
app.mount('#app');

Local

In the SFC(.vue)

<template>
  <ReTimePicker v-model="value" />
</template>

<script setup lang="ts">
import ReTimePicker from 're-time-picker';
import 're-time-picker/dist/style.css';

const value = ref('10:10:10 上午');
</script>

πŸ“š More features in Document.

0.0.25-beta04

2 years ago

0.0.25-beta03

2 years ago

0.0.25-beta02

2 years ago

0.0.25-beta01

2 years ago

0.0.24-alpha04

2 years ago

0.0.24-alpha02

2 years ago

0.0.24-alpha01

2 years ago

0.0.24

2 years ago

0.0.23

2 years ago

0.0.22

2 years ago

0.0.21

2 years ago

0.0.19

2 years ago

0.0.18

2 years ago

0.0.17

2 years ago

0.0.16

2 years ago

0.0.15

2 years ago

0.0.14

2 years ago

0.0.13

2 years ago

0.0.12

2 years ago

0.0.11

2 years ago

0.0.10

2 years ago

0.0.9

2 years ago

0.0.8

2 years ago