This repository has been archived on 2021-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
vuejs_course/basics-01-starting-code/app.js

13 lines
223 B
JavaScript

"use strict";
const app = Vue.createApp({
data() {
return {
courseGoal: "Finish the course and learn Vue.",
vueLink: "https://vuejs.org",
};
},
});
app.mount("#user-goal");