software-development-2022-e.../templates/without-npm/app.js

20 lines
279 B
JavaScript
Raw Normal View History

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");