feat: publish 0.4.0

This commit is contained in:
就眠儀式
2022-03-20 14:54:36 +08:00
parent 3303d4447b
commit 1417247bbe
8 changed files with 56 additions and 30 deletions

View File

@@ -34,6 +34,32 @@ export default {
:::
::: title 日期时间
:::
::: demo
<template>
<lay-date-picker type="datetime" v-model="endTime"></lay-date-picker>
</template>
<script>
import { ref } from 'vue'
export default {
setup() {
const endTime = ref("2022-03-04 17:35:00");
return {
endTime
}
}
}
</script>
:::
::: comment
:::