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