alicesaidhi/vide
v0.4.1-test.3 ·
Unofficial fork of vide for the new type solver. Comes with instance types!
This is a fork of Vide meant for the new typesolver! Please avoid using this on the old type solver
Vide is a reactive Luau UI library inspired by Solid.
- Fully Luau typecheckable
- Declarative and concise syntax.
- Reactively driven.
Getting started
Read the crash course for a quick introduction to the library.
Code sample
local create = vide.create
local source = vide.source
local function Counter()
local count = source(0)
return create "TextButton" {
Text = function()
return "count: " .. count()
end,
Activated = function()
count(count() + 1)
end
}
end