# 源码调试

# 第一步

新建一个目录、安装vue3

mkdir vue3-practice
cd vue3-practice
git clone https://github.com/vuejs/vue-next.git
1
2
3

# 第二步

生成vue文件vue.global.js

npm run dev
1

这里大家需要注意,这样并没有开启sourcemap,所以也不能进行源码调试, 那怎么开启呢,那我们就看一下这个dev.js的脚本是怎么写的,从下图中可以看出,执行脚本的时候,只需要传入sourcempa或则s就可以打开sourcemap, 执行npm run dev -- -s dev脚本

传入sourcemp或则s

# 第三步

新建一个html文件,在vue3-practive目录下

    mkdir demo
    cd demo
    touch index.html
1
2
3
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
  <script src="../vue-next/packages/vue/dist/vue.global.js"></script>
</head>
<body>
  <div id="app">
    <p>
      {{count}}
    </p>
  </div>
  
  <script>
    const vm = Vue.createApp({
      data() {
        return {
          count: 0
        }
      }
    }).mount('#app');
  </script>
</body>
</html>

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

最终结果