SOURCE

console 命令行工具 X clear

                    
>
console
<!DOCTYPE html>
<html lang="en">

<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>Document</title>
</head>
<style>
  [v-cloak] {
    display: none;
  }
</style>

<body>
  <div id="app">
    <div class="content" v-cloak>{{message}}</div>
  </div>
  <script src="./vue/dist/vue.js"></script>
  <script>
    setTimeout(() => {
      const app = new Vue({
        el: '#app',
        data: {
          message: '你好呀!'
        }
      })
    }, 1000)
  </script>
</body>

</html>