nocobase/docs/plugins/concepts/blocks.md
chenos d5d0e1036b
docs: add docs (#75)
* docs: add docs

* ignore dumi theme test

* fix: error TS2717: Subsequent property declarations must have the same type.

* update docs

* deploy gh-pages

* plugins docs

* hash & cname

* exportStatic

* ssr

* vercel

* vercel

* fix: deploy vercel

* Delete vercel.json

* docs

* fix APP_DIST

* on master branch
2021-04-17 21:33:21 +08:00

691 B

title
Blocks - 区块

Blocks - 区块

字段区块

export default {
  name: 'examples',
  fields: [
    {
      name: 'content',
      interface: 'string',
      type: 'string',
      block: {
        type: 'textarea',
      },
    }
  ],
};

数据表区块

export default {
  name: 'examples',
  blocks: [
    {
      type: 'form',
      name: 'form',
      title: '表单',
      fields: ['col1', 'col2'],
    },
  ],
};

后台可配置

export const form = {
  title: '表单',
  options: {
    // form blocks 配置项默认值
  },
  properties: {
    // 需要开放配置的字段
  },
  linkages: {
    // 字段联动
  },
};