Level 10
it's working now by changing the script to
const { createApp } = Vue;
createApp({
data() {
return {
fullName: "Hello Vue!",
};
},
}).mount("#app");
I don't know why! but it works, for now, anyone can explain?
