File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -290,27 +290,39 @@ This is made possible via several configurations:
290290
291291``` mermaid
292292 flowchart LR
293+ vue["vue"]
293294 compiler-sfc["@vue/compiler-sfc"]
294295 compiler-dom["@vue/compiler-dom"]
296+ compiler-vapor["@vue/compiler-vapor"]
295297 compiler-core["@vue/compiler-core"]
296- vue["vue"]
297298 runtime-dom["@vue/runtime-dom"]
299+ runtime-vapor["@vue/runtime-vapor"]
298300 runtime-core["@vue/runtime-core"]
299301 reactivity["@vue/reactivity"]
300302
301303 subgraph "Runtime Packages"
302304 runtime-dom --> runtime-core
305+ runtime-vapor --> runtime-core
303306 runtime-core --> reactivity
304307 end
305308
306309 subgraph "Compiler Packages"
307310 compiler-sfc --> compiler-core
308311 compiler-sfc --> compiler-dom
312+ compiler-sfc --> compiler-vapor
309313 compiler-dom --> compiler-core
314+ compiler-vapor --> compiler-core
310315 end
311316
317+ vue --> compiler-sfc
312318 vue ---> compiler-dom
313319 vue --> runtime-dom
320+ vue --> compiler-vapor
321+ vue --> runtime-vapor
322+
323+ %% Highlight class
324+ classDef highlight stroke:#35eb9a,stroke-width:3px;
325+ class compiler-vapor,runtime-vapor highlight;
314326```
315327
316328There are some rules to follow when importing across package boundaries:
You can’t perform that action at this time.
0 commit comments