From cfc7b8710bb52804d5fd909de4c0eb0424169db7 Mon Sep 17 00:00:00 2001 From: Adrian Gaudebert Date: Sun, 5 Nov 2017 12:03:08 +0100 Subject: [PATCH] Use template strings for Vue templates. --- js/main.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/js/main.js b/js/main.js index 39ecb79..85012c8 100644 --- a/js/main.js +++ b/js/main.js @@ -1,10 +1,10 @@ (function () { Vue.component('ghetto-sound', { - template: '
' + - '' + - '' + - '
', + template: `
+ + +
`, props: { asset: Object, },