美文网首页
2020-11-10 知识点

2020-11-10 知识点

作者: 罗不错 | 来源:发表于2020-11-11 16:00 被阅读0次

    let compiler = require('@vue/compiler-core')

    1. 引用vue的模块时,默认是引用compiler-core.esm-bundler.js ,因为在脚手架生成的项目,默认都是引用esm-bundler.js

    2. 如果要引用别的模块,可以指定,如let compiler = require('@vue/compiler-core/dist/index.js'), 不过这样做可能有bug,cjs.js是给服务器使用.不匹配.

    3. 静态节点提升

    4. vue3.0模板编译原理
      https://segmentfault.com/a/1190000023594560

    相关文章

      网友评论

          本文标题:2020-11-10 知识点

          本文链接:https://www.haomeiwen.com/subject/vqtjbktx.html