欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Vue3.0输出hello world

程序员文章站 2022-06-18 11:17:42
...

Vue3.0输出hello world

vue3.0官方文档

html部分

<div id="app">
        <h1>{{message}}</h1>
</div>

javascript部分

 const App = {
            data(){
                return{
                    message:"hello Vue3.0"
                }
            }
        }
 Vue.createApp(App).mount("#app")

结果
Vue3.0输出hello world

结尾

漫漫修仙路,骚年仍需努力!!