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

20 lines
279 B
JavaScript

const app = Vue.createApp({
data() {
return {
text: "hello World",
};
},
methods: {
date() {
return new Date().toLocaleDateString();
},
},
computed: {
shouted() {
return this.text.toUpperCase();
},
},
});
app.mount("#app");