vue参考---VUE程序运行过程

蓝咒 提交于 2020-04-29 10:06:55

vue参考---VUE程序运行过程

一、总结

一句话总结:

template->ast(abstract syntax tree)->render->virtual dom->UI

 

 

1、runtime-compiler 和 runtime-only 的运行原理(运行过程)?

runtime-compiler:template->ast(abstract syntax tree)->render->virtual dom->UI
runtime-only:性能更高、代码量更少:render->virtual dom->UI

 

 

2、npm install vue-loader vue-template-compiler --save-dev中的vue-template-compiler的作用是什么?

vue-template-compiler将vue中的template转换成render

 

3、Runtime-Compiler和Runtime-only的选择使用情况?

如果在之后的开发中,你依然使用template,就需要选择Runtime-Compiler
如果你之后的开发中,使用的是.vue文件夹开发,那么可以选择Runtime-only

 

 

 

二、VUE程序运行过程

博客对应课程的视频位置:

 

 

 

 

 
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!