From 8e810dcfd60ef82d3523ebcd65acbe4a77c76e3a Mon Sep 17 00:00:00 2001 From: Evan You Date: Wed, 9 Nov 2016 18:08:27 -0500 Subject: [PATCH] tweak indent --- src/platforms/web/compiler/modules/style.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/platforms/web/compiler/modules/style.js b/src/platforms/web/compiler/modules/style.js index d0ceac49..425c5054 100644 --- a/src/platforms/web/compiler/modules/style.js +++ b/src/platforms/web/compiler/modules/style.js @@ -17,10 +17,10 @@ function transformNode (el: ASTElement, options: CompilerOptions) { const expression = parseText(staticStyle, options.delimiters) if (expression) { warn( - `style="${staticStyle}": ` + - 'Interpolation inside attributes has been removed. ' + - 'Use v-bind or the colon shorthand instead. For example, ' + - 'instead of
, use
.' + `style="${staticStyle}": ` + + 'Interpolation inside attributes has been removed. ' + + 'Use v-bind or the colon shorthand instead. For example, ' + + 'instead of
, use
.' ) } }