2023-01-12 19:31:06 +01:00
|
|
|
const app = Vue.createApp({
|
2023-01-16 21:57:08 +01:00
|
|
|
data() {
|
|
|
|
return {
|
2023-01-12 19:31:06 +01:00
|
|
|
text: "hello World",
|
2023-01-16 21:57:08 +01:00
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
date() {
|
|
|
|
return new Date().toLocaleDateString();
|
2023-01-12 19:31:06 +01:00
|
|
|
},
|
2023-01-16 21:57:08 +01:00
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
shouted() {
|
|
|
|
return this.text.toUpperCase();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
app.mount("#app");
|