mirror of
https://github.com/centau/vide.git
synced 2026-08-20 14:41:37 +00:00
Improve Documentation Site (#41)
* update css and snippets * Add banner * improve home page * Update Banner * cleanup * Update font to JetBrains Mono * Add a quick look to Home * Simplify Home Page * Removed banner, removed copyright notice, reduced home page
This commit is contained in:
parent
f7dac3f63a
commit
f8e84f9f8d
29 changed files with 255 additions and 184 deletions
|
|
@ -5,7 +5,7 @@ Vide's reactivity.
|
|||
|
||||
A source can be created using `source()`.
|
||||
|
||||
```lua
|
||||
```luau
|
||||
local source = vide.source
|
||||
|
||||
local count = source(0)
|
||||
|
|
@ -16,13 +16,13 @@ The value passed to `source()` is the initial value of the source.
|
|||
The value of a source can be set by calling it with an argument, and can be read
|
||||
by calling it with no arguments.
|
||||
|
||||
```lua
|
||||
```luau
|
||||
count(count() + 1) -- increment count by 1
|
||||
```
|
||||
|
||||
Sources can be *derived* by wrapping them in functions.
|
||||
|
||||
```lua
|
||||
```luau
|
||||
local count = source(0)
|
||||
|
||||
local text = function()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue