chore: 发布 0.4.4

This commit is contained in:
就眠儀式
2022-03-29 17:28:14 +08:00
parent 76a9e9c04e
commit 5344cc2564
4 changed files with 129 additions and 41 deletions

View File

@@ -60,6 +60,58 @@ export default {
:::
::: title 年份选择
:::
::: demo
<template>
<lay-date-picker type="year" 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>
:::
::: title 月份选择
:::
::: demo
<template>
<lay-date-picker type="month" 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
:::