mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
9 lines
163 B
Vue
9 lines
163 B
Vue
|
<template>
|
||
|
<el-calendar v-model="value" />
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup>
|
||
|
import { ref } from 'vue'
|
||
|
const value = ref(new Date('Aug 18, 2020'))
|
||
|
</script>
|