software-development-2022-e.../session-2/tryout/task-1/app.js

18 lines
303 B
JavaScript

const app = Vue.createApp({
data() {
return {
title: "Vue.js",
link: "https://de.wikipedia.org/wiki/JavaScript",
input: "",
};
},
methods: {
showAlert() {
alert("This is an alert");
},
},
computed: {},
});
app.mount("#asdfereiaicicmkdjkasekjfasdf3e");