software-development-2022/assignment5-1/app.js

21 lines
526 B
JavaScript
Raw Normal View History

2022-11-17 15:48:17 +01:00
const app = Vue.createApp({
data: () => ({
myName: "Marc",
myAge: 12,
anImageUrl:
"https://images.unsplash.com/photo-1444464666168-49d633b86797?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2338&q=80",
myInput:
"Deserunt cupidatat dolor ea ex excepteur ad Lorem culpa pariatur dolore.",
}),
methods: {
agePlusFive() {
return this.myAge + 5;
},
randomNumber() {
return Math.random();
},
},
});
app.mount("#assignment");