18 lines
303 B
JavaScript
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");
|