client

共找到 2 篇文章

2 篇文章
2 分钟阅读
3000 字数
vite

vite -- 客户端错误弹窗展示

Vite client overlay 🔗利用Custom Component中的自定义组件,封装了一个自定义的web 标签 1 2 3 4 export const overlayId = 'vite-error-overlay' if (customElements && !customElements.get(overlayId)) { customElements.define(overlayId, ErrorOverlay) } 实例化方法 🔗 1 2 3 4

vite

vite Client客户端源码

vite Client客户端源码 🔗vite 客户端使用来响应服务端文件改动, 最终客户端的代码通过注入的方向,注入到index.html中,实现热更新功

阅读全文
1300 字