diff --git a/src/pages/demo/plugins/day/index.vue b/src/pages/demo/plugins/day/index.vue
index cafe332a..68f9fa08 100644
--- a/src/pages/demo/plugins/day/index.vue
+++ b/src/pages/demo/plugins/day/index.vue
@@ -47,10 +47,12 @@
查询
- {{now.isBefore(now.add(1, 'day'), 'days')}}
- {{now.isBefore(now.subtract(1, 'day'), 'days')}}
+ {{now.isBefore(now.add(1, 'day'))}}
+ {{now.isBefore(now.subtract(1, 'day'))}}
{{now.isSame(now)}}
- {{now.isSame(now.add(1, 'day'), 'days')}}
+ {{now.isSame(now.add(1, 'day'))}}
+ {{now.isAfter(now.add(1, 'day'))}}
+ {{now.isAfter(now.subtract(1, 'day'))}}