File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 14
14
15
15
createApp ( {
16
16
render ( ) {
17
+ // Per devs in Vue Discord, seems not possible to use strings with
18
+ // component elements like `<AlertComponent>` (whether within
19
+ // `template`, `render`, or `setup`), but this `createElement`
20
+ // syntax (see https://vuejs.org/v2/guide/render-function.html#createElement-Arguments )
21
+ // is at least HTML-like and decent enough for rapid prototyping
22
+ // These docs also seems to indicate that duplicates are not
23
+ // allowed, suggesting use of factory functions instead, but
24
+ // not seeming to get errors in Vue 3 here if using multiple instances
25
+ // at least for the progress indicator
17
26
return h ( 'div' , [
18
27
'Test:' ,
19
28
h ( ProgressIndicatorComponent ) ,
You can’t perform that action at this time.
0 commit comments