data
Last updated
Last updated
const app = Vue.createApp({
data(){
return {
text : "Welcome to Vue JS 3!"
};
}
});
app.mount("#app");const app = Vue.createApp({
data:function(){
return {
text : "Welcome to Vue JS 3!"
};
}
});
app.mount("#app");const app = Vue.createApp({
data:()=>{
return {
text : "Welcome to Vue JS 3!"
};
}
});
app.mount("#app");const app = Vue.createApp({
data:{
text : "Welcome to Vue JS 3!"
}
});
app.mount("#app");