let compiler = require('@vue/compiler-core')
-
引用vue的模块时,默认是引用compiler-core.esm-bundler.js ,因为在脚手架生成的项目,默认都是引用esm-bundler.js
-
如果要引用别的模块,可以指定,如let compiler = require('@vue/compiler-core/dist/index.js'), 不过这样做可能有bug,cjs.js是给服务器使用.不匹配.
-
静态节点提升
-
vue3.0模板编译原理
https://segmentfault.com/a/1190000023594560
网友评论