0.0.1-2023030801-Alpha • Published 2 years ago

gc-starter-lowcode-app-common v0.0.1-2023030801-Alpha

Weekly downloads
-
License
-
Repository
-
Last release
2 years ago

gc-starter-lowcode-common

基于千行低代码的公共组件包

一、安装

$ npm install gc-starter-lowcode-common

二、在千行框架中使用

在组件中引入运行器组件和样式

<template>
  <LowCodeFormDialog
    ref="LowCodeFormDialog"
  />
</template>
<script>
  import { LowCodeFormDialog }  from 'gc-starter-lowcode-common'
  import "gc-starter-lowcode-common/lib/lowCodeCommon.css"
  export default {
    components: {
      LowCodeFormDialog
    }
  }
</script>