diff --git a/examples/sites/demos/apis/calendar-view.js b/examples/sites/demos/apis/calendar-view.js
index d257eca812..3725b7954e 100644
--- a/examples/sites/demos/apis/calendar-view.js
+++ b/examples/sites/demos/apis/calendar-view.js
@@ -195,9 +195,10 @@ export default {
'en-US': 'Should the upper left button be displayed, Default Display'
},
meta: {
- stable: '3.22.0'
+ stable: '3.25.0'
},
- mode: ['mobile-first'],
+ mode: ['pc', 'mobile-first'],
+ pcDemo: 'calendar-mode',
mfDemo: 'calendar-mode'
}
],
diff --git a/examples/sites/demos/pc/app/calendar-view/calendar-mode-composition-api.vue b/examples/sites/demos/pc/app/calendar-view/calendar-mode-composition-api.vue
index 0b1cd65750..825db0f678 100644
--- a/examples/sites/demos/pc/app/calendar-view/calendar-mode-composition-api.vue
+++ b/examples/sites/demos/pc/app/calendar-view/calendar-mode-composition-api.vue
@@ -1,5 +1,11 @@
-
+
diff --git a/examples/sites/demos/pc/app/calendar-view/calendar-mode.spec.ts b/examples/sites/demos/pc/app/calendar-view/calendar-mode.spec.ts
index e247d371bc..ffb4565a66 100644
--- a/examples/sites/demos/pc/app/calendar-view/calendar-mode.spec.ts
+++ b/examples/sites/demos/pc/app/calendar-view/calendar-mode.spec.ts
@@ -9,6 +9,9 @@ test('显示模式', async ({ page }) => {
const dmonthDom = page.locator('.tiny-calendar-view-month__main')
const timelineDom = page.locator('.tiny-calendar-view-week__timeline')
const scheduleDom = page.locator('.tiny-calendar-view-week__schedule')
+
+ const calendarHeader = page.locator('.tiny-calendar-view__header')
+ await expect(calendarHeader.locator('div').first()).not.toHaveClass('.tiny-button .tiny-button--default')
// 验证按钮是否选中,验证时间组件页面是否正确
await expect(monthBtn.locator('.tiny-svg')).toHaveClass(/fill-brand/)
await expect(dmonthDom).toBeVisible()
diff --git a/examples/sites/demos/pc/app/calendar-view/calendar-mode.vue b/examples/sites/demos/pc/app/calendar-view/calendar-mode.vue
index 82716365f9..5f4184a7a6 100644
--- a/examples/sites/demos/pc/app/calendar-view/calendar-mode.vue
+++ b/examples/sites/demos/pc/app/calendar-view/calendar-mode.vue
@@ -1,5 +1,11 @@
-
+
diff --git a/packages/vue/src/calendar-view/src/pc.vue b/packages/vue/src/calendar-view/src/pc.vue
index 5996238792..24b19b84ad 100644
--- a/packages/vue/src/calendar-view/src/pc.vue
+++ b/packages/vue/src/calendar-view/src/pc.vue
@@ -2,7 +2,7 @@