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

19 lines
295 B
JavaScript
Raw Normal View History

2022-11-17 15:48:17 +01:00
const app = Vue.createApp({
data: () => ({
tasks: [],
newTask: "",
showList: true,
}),
methods: {
addTask() {
this.tasks.unshift(this.newTask);
this.newTask = "";
},
toggleList() {
this.showList ^= true;
},
},
});
app.mount("#assignment");