@blueking/crontab
TypeScript icon, indicating that this package has built-in type declarations

0.0.1-beta.18 • Public • Published

支持 Vue2/Vue3 版本 无差别使用

安装

npm i @blueking/crontab

使用

  • vue3框架下使用
<template>
  <div class="app">
    <BkCrontab
      v-model="value"
    />
  </div>
</template>
<script setup lang="ts">
import { ref } from 'vue';

import BkCrontab from '@blueking/crontab';
import ('@blueking/crontab/vue3/vue3.css');

const value = ref('');

</script>
  • vue2框架下使用
<template>
  <div class="app">
    <BkCrontab
      v-model="value"
    />
  </div>
</template>
<script setup lang="ts">
import { ref } from 'vue';

import BkCrontab from '@blueking/crontab/vue2';
import ('@blueking/crontab/vue2/vue2.css');


const value = ref('');

</script>

属性列表

属性名 描述 属性类型 默认值

| modelValue | 值 | string | -- |

Readme

Keywords

none

Package Sidebar

Install

npm i @blueking/crontab

Weekly Downloads

0

Version

0.0.1-beta.18

License

MIT

Unpacked Size

7.76 MB

Total Files

303

Last publish

Collaborators

  • blueking