Skip to content

Commit 4cc9f1c

Browse files
committed
Adds call
1 parent 9066912 commit 4cc9f1c

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

readme.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,23 @@ So we decided to create a collection of cool hidden and not so hidden features,
3131
{template .hello}
3232
Hello {$name}
3333
{/template}
34+
```
35+
36+
## Call
37+
38+
```
39+
{call .hello}
40+
{param name: 'Ray' /}
41+
{/call}
42+
```
43+
44+
```
45+
{call .hello}
46+
{param name: $name /}
47+
{param lastName: $lastName}
48+
{/call}
49+
```
50+
51+
```
52+
{call .hello data="all" /}
3453
```

0 commit comments

Comments
 (0)