From f0ab92e6fde42ad27642d17627a7dd17c8341666 Mon Sep 17 00:00:00 2001 From: nowisfuture Date: Sun, 3 Oct 2021 16:55:02 +0800 Subject: [PATCH] =?UTF-8?q?fix(quadrant-diagram-axis):=20=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E6=A0=B7=E5=BC=8F=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/components/quadrant-diagram/index.md | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/docs/components/quadrant-diagram/index.md b/docs/components/quadrant-diagram/index.md index 34ae9854..225c4ab8 100644 --- a/docs/components/quadrant-diagram/index.md +++ b/docs/components/quadrant-diagram/index.md @@ -1,4 +1,4 @@ -# ProQuadrantDiagramgress 象限图 +# QuadrantDiagram 象限图 象限图。 @@ -15,7 +15,6 @@ ```vue @@ -25,15 +24,10 @@ import { defineComponent, reactive } from 'vue' export default ({ setup() { const view = reactive({ - height: 200, - width: 200, + height: 500, + width: 500, }); - const handle = () => { - view.height = 400; - view.width = 400; - }; return { - handle, view, } } -- Gitee