将vue官网的第一个项目写在一个html里,没有运行成功,要怎样才能运行呢

<!DOCTYPE html>
<html lang="">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width,initial-scale=1.0">
    <title>明天之</title>
    <script src="https://unpkg.com/[email protected]/dist/vue.global.js"></script>
  </head>
  <body>
      <div id="counter">
          Counter: {
    
    {
    
     counter }}
      </div>
      
      <script>
      const CounterApp = {
    
    
          data() {
    
    
              return {
    
    
                  counter: 0
                }
            },
          mounted() {
    
    
              setInterval(() => {
    
    
                  this.counter++
                }, 1000)
            }
        }
       </script>
  </body>
</html>

猜你喜欢

转载自blog.csdn.net/weixin_40945354/article/details/114745265
今日推荐