2023-11-09 17:42:37 +08:00
# Vue Vapor
2019-08-25 10:37:05 +08:00
2023-11-09 17:42:37 +08:00
This repository is a fork of [vuejs/core ](https://github.com/vuejs/core ) and is used for research and development of no virtual dom mode.
2022-02-06 17:02:10 +08:00
2023-11-24 11:15:39 +08:00
## TODO
PR are welcome! Please create a issue before you start to work on it.
2023-11-24 11:39:49 +08:00
See the To-do list below or `// TODO` comments in code (`compiler-vapor` and `runtime-vapor` packages).
2023-11-24 11:15:39 +08:00
- [x] counter
- [x] simple bindings
- [x] simple events
- [ ] TODO-MVC
- [ ] directives
2023-11-24 15:25:34 +08:00
- [x] `v-once`
2023-11-25 16:25:43 +08:00
- [ ] unit tests
2023-11-24 14:44:57 +08:00
- [x] `v-html`
2023-11-24 14:48:51 +08:00
- [x] `v-text`
2023-11-24 15:37:49 +08:00
- [x] `v-pre`
2023-11-24 15:40:38 +08:00
- [x] `v-cloak`
2023-11-24 15:34:40 +08:00
- [ ] `v-on` / `v-bind`
- [x] simple expression
- [ ] compound expression
- [ ] modifiers
2023-11-25 16:25:43 +08:00
- [ ] unit tests
- [ ] runtime
2023-11-24 11:15:39 +08:00
- [ ] `v-memo`
2023-11-24 15:34:40 +08:00
- [ ] `v-model`
- [ ] `v-if` / `v-else` / `v-else-if`
- [ ] `v-for`
- [ ] `v-show`
- [ ] runtime directive
- [ ] compiler
2023-11-24 11:15:39 +08:00
- [ ] Remove DOM API in codegen
2023-11-24 11:39:49 +08:00
- [ ] Fragment
2023-11-26 02:13:59 +08:00
- [x] multiple root nodes
2023-11-26 03:53:47 +08:00
- [x] all dynamic children
- [ ] return `Node[]` for all dynamic children, instead of using `fragment` API
2023-11-24 11:39:49 +08:00
- [ ] Built-in Components
- [ ] Transition
- [ ] TransitionGroup
- [ ] KeepAlive
- [ ] Teleport
- [ ] Suspense
- [ ] Component
- [ ] runtime
- [ ] compiler
2023-11-24 11:15:39 +08:00
- ...
- [ ] SSR
- [ ] Performance & Optimization
- [ ] remove unnecessary close tag `</div>`
2022-02-06 17:02:10 +08:00
## Sponsors
2022-12-01 08:05:51 +08:00
Vue.js is an MIT-licensed open source project with its ongoing development made possible entirely by the support of these awesome [backers ](https://github.com/vuejs/core/blob/main/BACKERS.md ). If you'd like to join them, please consider [ sponsoring Vue's development ](https://vuejs.org/sponsor/ ).
2022-02-06 17:02:10 +08:00
2022-09-01 14:29:12 +08:00
< p align = "center" >
< h3 align = "center" > Special Sponsor< / h3 >
< / p >
< p align = "center" >
< a target = "_blank" href = "https://github.com/appwrite/appwrite" >
< img alt = "special sponsor appwrite" src = "https://sponsors.vuejs.org/images/appwrite.svg" width = "300" >
< / a >
< / p >
2022-02-06 17:02:10 +08:00
< p align = "center" >
2022-05-03 08:46:24 +08:00
< a target = "_blank" href = "https://vuejs.org/sponsor/#current-sponsors" >
2023-11-07 15:31:46 +08:00
< img alt = "sponsors" src = "https://sponsors.vuejs.org/sponsors.svg?v3" >
2022-02-06 17:08:51 +08:00
< / a >
2022-02-06 17:02:10 +08:00
< / p >
2022-02-07 13:20:01 +08:00
## License
[MIT ](https://opensource.org/licenses/MIT )
Copyright (c) 2013-present, Yuxi (Evan) You