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.
28 lines
486 B
28 lines
486 B
<cn>
|
|
#### 卡片模式
|
|
用于嵌套在空间有限的容器中。
|
|
</cn>
|
|
|
|
<us>
|
|
#### Card
|
|
Nested inside a container element for rendering in limited space.
|
|
</us>
|
|
|
|
```html
|
|
<template>
|
|
<div :style="{ width: '300px', border: '1px solid #d9d9d9', borderRadius: '4px' }">
|
|
<a-calendar :fullscreen="false" @panelChange="onPanelChange" />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
methods: {
|
|
onPanelChange(value, mode) {
|
|
console.log(value, mode);
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
```
|
|
|