A reactive Luau library for creating UI. https://centau.github.io/vide/
Find a file
2024-10-29 10:27:41 +01:00
.github/workflows Fix GitHub action 2024-07-27 02:03:06 +01:00
docs Update font to JetBrains Mono 2024-10-29 10:27:41 +01:00
src Bump version to 0.3.1 2024-10-09 02:23:06 +01:00
test Make context functions return result 2024-10-09 02:12:25 +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 Bump version to 0.3.1 2024-10-09 02:23:06 +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 css and snippets 2024-10-28 15:54:22 +01:00
todo.md Fix recursive batch() use 2023-11-20 12:27:56 +00:00
wally.toml Bump version to 0.3.1 2024-10-09 02:23:06 +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