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/2021-01-18 basics-01-starti.../app.js

24 lines
546 B
JavaScript
Raw Permalink Normal View History

2021-01-18 16:07:55 +01:00
"use strict";
const app = Vue.createApp({
data() {
return {
2021-01-18 16:27:26 +01:00
courseGoalA: "Finish the course and learn Vue!",
2021-01-18 16:34:17 +01:00
courseGoalB: "Master Vue and build amazing apps!",
2021-01-18 16:07:55 +01:00
vueLink: "https://vuejs.org",
};
},
2021-01-18 16:22:14 +01:00
methods: {
outputGoal() {
const randomNumber = Math.random();
if (randomNumber < 0.5) {
2021-01-18 16:27:26 +01:00
return this.courseGoalA;
2021-01-18 16:22:14 +01:00
} else {
2021-01-18 16:27:26 +01:00
return this.courseGoalB;
2021-01-18 16:22:14 +01:00
}
},
},
2021-01-18 16:07:55 +01:00
});
app.mount("#user-goal");