File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ import { useWindowSize } from "@vueuse/core";
4343const { width : windowWidth } = useWindowSize ();
4444const toSize = (percent : number ) => (percent / 100 ) * windowWidth .value ;
4545
46- const drawerMinSize = computed (() => 480 );
46+ const drawerMinSize = computed (() => 450 );
4747const drawerMaxSize = computed (() => toSize (75 ));
4848
4949const restrictRange = (x : number ) =>
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ export default {
6868 linear : "线性" ,
6969 log : "对数" ,
7070 caption : "标题" ,
71+ title : "标题" ,
7172 grid : "网格线" ,
7273 reverse : "反向绘制" ,
7374 } ,
@@ -144,6 +145,7 @@ export default {
144145 linear : "Linear" ,
145146 log : "Logarithmic" ,
146147 caption : "Caption" ,
148+ title : "Title" ,
147149 grid : "Grid" ,
148150 reverse : "Reversed direction" ,
149151 } ,
Original file line number Diff line number Diff line change @@ -3,6 +3,5 @@ import mitt from "mitt";
33const emitter = mitt < Events > ( ) ;
44type Events = {
55 "require-full-update" : string ;
6- "require-post-update" : string ;
76} ;
87export default emitter ;
You can’t perform that action at this time.
0 commit comments