@isameng/lowcode-components
v1.0.2
Published
lowcode Components
Downloads
2
Readme
低代码平台业务组件库
特性
- typescript
- Vue3
- 单元测试
- 提交发布前验证
- gitlab-runner 实现自动发布
提供一个业务组件库在编辑器和 H5 页面中都可以使用
该组件包导出两种格式的模块,供不同情况下使用
// umd 格式
"main": "dist/lego-components.umd.js",
// es modules 格式
"module": "dist/lego-components.esm.js",
安装和使用
// 安装
npm install @isameng/lowcode-components --save
import LowcodeComponents from '@isameng/lowcode-components'
// 加载样式
import '@isameng/lowcode-components/dist/lowcode-components.css'
const app = createApp(App)
// 全局引入 目前包括 FinalPage, HText, HImage , HShape三个组件
app.use(LowcodeComponents)
app.mount('#app')
渲染最终页面
setup() {
// 使用 finalPage 组件进行渲染,使用我们预定义好的数据结构
const testData = {
// 页面上面一个个组件的属性
components: [
{id: '123', name: 'h-text', props: { text: 'hello', top: '0', left: '20px'}},
{id: '234', name: 'lh-image', props: { imageSrc: 'http://vue-maker.oss-cn-hangzhou.aliyuncs.com/vue-marker/5f6338e666336111f73d220c.png', top: '30px', left: '20px'}},
{id: '235', name: 'h-shape', props: { backgroundColor: 'red', top: '50px', left: '20px', width: '100px', height: '100px'}},
// 这是一个链接
{id: '345', name: 'h-text', props: { backgroundColor: "#1890ff", color: "#ffffff", text: "按钮内容", width: "100px", actionType: "to", url: "http://www.baidu.com", top: '200px', left: '150px',
}}
]
}
return {
testData
}
}
<final-page :components="testData.components"></final-page>