Line Highlighting â
To highlight specific lines, simply add line numbers within brackets {}
. Line numbers start counting from 1 by default.
md
```ts {2,3}
function add(
a: Ref<number> | number,
b: Ref<number> | number
) {
return computed(() => unref(a) + unref(b))
}
```
Dynamic Line Highlighting â
To change what's highlighted with multiple clicks, you can use |
to separate each stage:
md
```ts {2-3|5|all}
function add(
a: Ref<number> | number,
b: Ref<number> | number
) {
return computed(() => unref(a) + unref(b))
}
```
This will first highlight a: Ref<number> | number
and b: Ref<number> | number
, and then return computed(() => unref(a) + unref(b))
after one click, and lastly, the whole block.
You can set the line number to hide
to hide the code block or none
to not highlight any line:
md
```ts {hide|none}
function add(
a: Ref<number> | number,
b: Ref<number> | number
) {
return computed(() => unref(a) + unref(b))
}
```
TIP
Learn more in the click animations guide.