From 4995c32dbcd4b9d3f314b03449c45764cc7eded5 Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Mon, 18 Jan 2021 16:34:17 +0100 Subject: [PATCH] remove the raw HTML --- basics-01-starting-code/app.js | 2 +- basics-01-starting-code/index.html | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/basics-01-starting-code/app.js b/basics-01-starting-code/app.js index 2299a7e..2657a04 100644 --- a/basics-01-starting-code/app.js +++ b/basics-01-starting-code/app.js @@ -4,7 +4,7 @@ const app = Vue.createApp({ data() { return { courseGoalA: "Finish the course and learn Vue!", - courseGoalB: "

Master Vue and build amazing apps!

", + courseGoalB: "Master Vue and build amazing apps!", vueLink: "https://vuejs.org", }; }, diff --git a/basics-01-starting-code/index.html b/basics-01-starting-code/index.html index 6ca7429..ed76902 100644 --- a/basics-01-starting-code/index.html +++ b/basics-01-starting-code/index.html @@ -17,7 +17,8 @@

My Course Goal

-

+ +

{{ outputGoal() }}

Learn more about Vue.