This is a Lowcode Engine demo based on Vue. You can experience the following versions online:
- Vue 3: https://lowcode-engine-demo-vue.vercel.app/
- Vue 2.7: https://lowcode-engine-demo-vue2-7.vercel.app/
- Vue 2.7 Examples: https://lowcode-engine-demo-vue2-7-examples.vercel.app/
git clone https://github.com/cdLab996/lowcode-engine-demo-vue.git
cd lowcode-engine-demo-vue
pnpm install
pnpm startWhen using variables:
this.props.xxx->this.xxxthis.state.xxx->this.xxx
At present, the vue code editor has not been adapted yet. You can directly edit the code using the react code editor.
- The content within
statewill automatically convert to vuedata. - Lifecycle events will automatically adapt to vue lifecycle.
componentDidMount->onMountedcomponentDidCatch->onErrorCapturedshouldComponentUpdate->onBeforeUpdatecomponentWillUnmount->onBeforeUnmount
- All other methods will automatically convert to vue
methods.
This is a fork from lowcode-engine-demo