@blueking/crontab
v0.0.1-beta.18
Published
蓝鲸 Crontab
Downloads
7
Readme
支持 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
| -- |