8000 GitHub - centau/vide at refs/heads/main
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

centau/vide

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
< 9593 a title="wally.toml" aria-label="wally.toml, (File)" class="Link--primary" href="/centau/vide/blob/refs/heads/main/wally.toml">wally.toml
 
 

Repository files navigation


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

About

A reactive Luau library for creating UI.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

0