Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fyl080801/jrender-plus
A simple demo of vue3, about low code
https://github.com/fyl080801/jrender-plus
lowcode vue vue3
Last synced: 17 days ago
JSON representation
A simple demo of vue3, about low code
- Host: GitHub
- URL: https://github.com/fyl080801/jrender-plus
- Owner: fyl080801
- Created: 2021-09-15T10:22:35.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-01-24T15:25:36.000Z (10 months ago)
- Last Synced: 2024-04-28T05:48:24.286Z (7 months ago)
- Topics: lowcode, vue, vue3
- Language: TypeScript
- Homepage:
- Size: 968 KB
- Stars: 6
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JRender Plus
[![Netlify Status](https://api.netlify.com/api/v1/badges/9daad24a-1636-4148-8f4e-34c6ab2eea49/deploy-status)](https://app.netlify.com/sites/jrender-plus/deploys)
## Quick Start
## 学习交流
### question
如何实现 for 表达式语句?
机制已经在这里实现 src/components/Render/index.ts (line:52)
但不能像 vue 里那样灵活
```yaml
component: el-radio-group
formItem:
label: radio
model: model.sel
children:
- component: el-radio
for: (item, index) in tabledata.data # 这里的功能
props:
label: $:item.name
children:
- component: span
props:
innerText: $:item.remark
```