diff --git a/basics-01-starting-code/app.js b/basics-01-starting-code/app.js index e69de29..e814851 100644 --- a/basics-01-starting-code/app.js +++ b/basics-01-starting-code/app.js @@ -0,0 +1,12 @@ +"use strict"; + +const app = Vue.createApp({ + data() { + return { + courseGoal: "Finish the course and learn Vue.", + vueLink: "https://vuejs.org", + }; + }, +}); + +app.mount("#user-goal"); diff --git a/basics-01-starting-code/index.html b/basics-01-starting-code/index.html index 9135b27..7772f0b 100644 --- a/basics-01-starting-code/index.html +++ b/basics-01-starting-code/index.html @@ -1,24 +1,25 @@ - + + Vue Basics - + - - + + +
-

Vue Course Goals

+

Vue Course Goals

-

My Course Goal

-

+

My Course Goal

+

{{ courseGoal }}

+

Learn more about Vue.

- + +