0.0.25-beta04 β€’ Published 3 years ago

re-time-picker v0.0.25-beta04

Weekly downloads
-
License
ISC
Repository
github
Last release
3 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

3 years ago

0.0.25-beta03

3 years ago

0.0.25-beta02

3 years ago

0.0.25-beta01

3 years ago

0.0.24-alpha04

3 years ago

0.0.24-alpha02

3 years ago

0.0.24-alpha01

3 years ago

0.0.24

3 years ago

0.0.23

3 years ago

0.0.22

3 years ago

0.0.21

3 years ago

0.0.19

3 years ago

0.0.18

3 years ago

0.0.17

3 years ago

0.0.16

3 years ago

0.0.15

3 years ago

0.0.14

3 years ago

0.0.13

3 years ago

0.0.12

3 years ago

0.0.11

3 years ago

0.0.10

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago