vue3(1)快速上手

  <div id="app">
    <h1>{{msg}}</h1>
  </div>
  <script src="https://unpkg.com/vue@next"></script>
  <script>
    // vue2 new Vue({el:})
    // vue2 使用el 挂载
    // vue2 用这种简单的引入script标签的写法 data直接写一个对象
    Vue.createApp({
      data(){
        return {
          msg: "hello world"
        }
      }
    }).mount("#app")
  </script>

posted @ 2021-07-29 21:42  `Duet`  阅读(58)  评论(0编辑  收藏  举报