09 2021 档案
摘要:provide/inject为我们提供了一种组件间传值的方式,但是默认情况下,provide/inject 绑定并不是响应式的。那么,我们就可以通过传递一个对象的方式,实现数据的响应性。
阅读全文
摘要:webpack这类的打包工具,能帮助我们把用esModule组织起来的代码打包到一个js文件中,在浏览器中运行。实现前端项目的模块化,同时优化请求数量,文件大小等。
话不多说,我们自己来实现一个类似的bundler,对模块化的前端代码进行打包,输出能在浏览器运行的js文件。
阅读全文
摘要:从零配置Vue开发webpack环境踩到的坑
图片不显示,路径为[object Module]的问题
页面空白,报 runtime-only build 相关错误
You are using the runtime-only build of Vue where the template compiler is not available. Either pre-compile the templates into render functions, or use the compiler-included
build.
Unknown custom element: \
阅读全文