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:
290
290
291
291
``` mermaid
292
292
flowchart LR
293
+ vue["vue"]
293
294
compiler-sfc["@vue/compiler-sfc"]
294
295
compiler-dom["@vue/compiler-dom"]
296
+ compiler-vapor["@vue/compiler-vapor"]
295
297
compiler-core["@vue/compiler-core"]
296
- vue["vue"]
297
298
runtime-dom["@vue/runtime-dom"]
299
+ runtime-vapor["@vue/runtime-vapor"]
298
300
runtime-core["@vue/runtime-core"]
299
301
reactivity["@vue/reactivity"]
300
302
301
303
subgraph "Runtime Packages"
302
304
runtime-dom --> runtime-core
305
+ runtime-vapor --> runtime-core
303
306
runtime-core --> reactivity
304
307
end
305
308
306
309
subgraph "Compiler Packages"
307
310
compiler-sfc --> compiler-core
308
311
compiler-sfc --> compiler-dom
312
+ compiler-sfc --> compiler-vapor
309
313
compiler-dom --> compiler-core
314
+ compiler-vapor --> compiler-core
310
315
end
311
316
317
+ vue --> compiler-sfc
312
318
vue ---> compiler-dom
313
319
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;
314
326
```
315
327
316
328
There are some rules to follow when importing across package boundaries:
You can’t perform that action at this time.
0 commit comments