From 940854e7a1db8fd5542ec4548e2a19db3fb361af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A7=91=E7=A7=91?= Date: Mon, 27 Mar 2023 19:51:18 +0800 Subject: [PATCH] fix(ProseA): deleted `static` and replaced `blank` with `target` (#45) --- components/global/ProseA.vue | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/components/global/ProseA.vue b/components/global/ProseA.vue index 57e9683..58b3646 100644 --- a/components/global/ProseA.vue +++ b/components/global/ProseA.vue @@ -4,22 +4,16 @@ defineProps({ type: String, default: '' }, - blank: { - type: Boolean, - default: false - }, - /** - * `true` if `href` points to a static file - */ - static: { - type: Boolean, - default: false + target: { + type: String, + default: undefined, + required: false } })