Skip to content

Quasi-Studio/autoform

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Quasi-dev/autoform

A package that automatically generates forms from a schema.

快速开始

npm i @quasi-dev/autoform

Demo

import { AButton, AButtonModel } from '@quasi-dev/autoform'

let el = document.getElementById('root') as HTMLDivElement

let btn = new AButton(new AButtonModel())
btn.mount(el)
btn.patch({
  caption: '123'
})

文档

暂缺