A reactive Luau library for creating UI. https://centau.github.io/vide/
Find a file
2023-09-25 11:44:24 +01:00
.github/workflows Initial commit 2023-08-08 21:33:11 +01:00
docs Add mermaid diagrams to docs 2023-09-21 19:15:32 +01:00
src Disallow creation of nested tracking scopes 2023-09-25 11:44:24 +01:00
test Disallow creation of nested tracking scopes 2023-09-25 11:44:24 +01:00
.gitattributes Initial commit 2023-08-08 21:33:11 +01:00
.gitignore Update vitepress 2023-08-29 21:37:10 +01:00
.luaurc Initial commit 2023-08-08 21:33:11 +01:00
CHANGELOG.md Update docs 2023-09-20 21:56:25 +01:00
default.project.json Initial commit 2023-08-08 21:33:11 +01:00
LICENSE.md Initial commit 2023-08-08 21:33:11 +01:00
README.md Update SVG viewboxes 2023-09-20 23:05:26 +01:00
todo.md Update todo 2023-09-22 16:57:14 +01:00
wally.toml chore: add wally package file 2023-09-20 23:07:36 +01:00


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