You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/calendar/demo/basic.md

25 lines
358 B

7 years ago
<cn>
#### 基本
7 years ago
一个通用的日历面板,支持年/月切换。
7 years ago
</cn>
7 years ago
7 years ago
<us>
#### basic
7 years ago
A basic calendar component with Year/Month switch.
7 years ago
</us>
7 years ago
7 years ago
```html
<template>
<a-calendar @panelChange="onPanelChange" />
</template>
<script>
export default {
methods: {
onPanelChange(value, mode) {
console.log(value, mode);
}
}
7 years ago
}
7 years ago
</script>
```