From ba3b50e268fd3b94cdc5c5dcae1fefafb793400d Mon Sep 17 00:00:00 2001 From: Daesub Kim Date: Thu, 16 Nov 2017 14:25:50 +0900 Subject: [PATCH] add the 'borderWidth' props for clip loader --- src/ClipLoader.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/ClipLoader.vue b/src/ClipLoader.vue index fe7b7d8..81032c3 100644 --- a/src/ClipLoader.vue +++ b/src/ClipLoader.vue @@ -23,6 +23,10 @@ export default { type: String, default: '35px' }, + borderWidth: { + type: String, + default: '2px' + }, radius: { type: String, default: '100%' @@ -33,7 +37,7 @@ export default { return { height: this.size, width: this.size, - borderWidth: '2px', + borderWidth: this.borderWidth, borderStyle: 'solid', borderColor: this.color + ' ' + this.color + ' transparent', borderRadius: this.radius,