File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,8 @@ Your HTML
26
26
<b k-text =" name" ></b >
27
27
</div >
28
28
29
- <p k-if =" canShowLastName" >This node doesn't exists</p >
29
+ <p k-if =" canShowLastName" >This node doesn't exists until the clause is true</p >
30
+ <p k-not =" canShowLastName" >This node doesn't exists while the clause is false</p >
30
31
<p k-hide =" canShowLastName" >This node is hidden</p >
31
32
```
32
33
@@ -38,6 +39,8 @@ The available ones are:
38
39
Shows the value of the received reference in the element's text.
39
40
* ** k-if** :
40
41
Removes the element if received reference is falsy. Add if truthy.
42
+ * ** k-not** :
43
+ Oposite of ``` k-if ``` . Removes when truthy. Add when falsy.
41
44
* ** k-hide** :
42
45
Hides the element if received reference is falsy. Shows if truthy.
43
46
* ** k-bind** :
You can’t perform that action at this time.
0 commit comments