中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

ligerui框架有哪些代碼示例

小樊
84
2024-10-22 11:43:11
欄目: 編程語言

LigerUI 是一個基于 React 的 UI 組件庫,提供了豐富的組件以支持快速開發。以下是一些 LigerUI 框架的代碼示例:

  1. 按鈕組件
import React from 'react';
import { Button } from 'ligerui';

const App = () => {
  return (
    <div>
      <Button type="primary">Primary Button</Button>
      <Button type="secondary">Secondary Button</Button>
    </div>
  );
};

export default App;
  1. 表單組件
import React from 'react';
import { Form, Input, Select } from 'ligerui';

const App = () => {
  return (
    <Form>
      <Form.Item label="Username">
        <Input />
      </Form.Item>
      <Form.Item label="Password">
        <Input.Password />
      </Form.Item>
      <Form.Item label="Gender">
        <Select>
          <Option value="male">Male</Option>
          <Option value="female">Female</Option>
        </Select>
      </Form.Item>
      <Form.Item>
        <Button type="primary">Submit</Button>
      </Form.Item>
    </Form>
  );
};

export default App;
  1. 表格組件
import React from 'react';
import { Table } from 'ligerui';

const App = () => {
  const columns = [
    { title: 'Name', dataIndex: 'name' },
    { title: 'Age', dataIndex: 'age' },
    { title: 'Address', dataIndex: 'address' },
  ];

  const dataSource = [
    {
      key: '1',
      name: 'John Brown',
      age: 32,
      address: 'New York No. 1 Lake Park',
    },
    {
      key: '2',
      name: 'Jim Green',
      age: 42,
      address: 'London No. 1 Lake Park',
    },
    {
      key: '3',
      name: 'Joe Black',
      age: 32,
      address: 'Sidney No. 1 Lake Park',
    },
  ];

  return (
    <Table columns={columns} dataSource={dataSource} />
  );
};

export default App;
  1. 彈窗組件
import React, { useState } from 'react';
import { Modal, Button } from 'ligerui';

const App = () => {
  const [visible, setVisible] = useState(false);

  const showModal = () => {
    setVisible(true);
  };

  const handleCancel = () => {
    setVisible(false);
  };

  return (
    <div>
      <Button type="primary" onClick={showModal}>
        Open Modal
      </Button>
      <Modal visible={visible} onCancel={handleCancel}>
        <h2>Modal Title</h2>
        <p>Modal content</p>
      </Modal>
    </div>
  );
};

export default App;

以上示例展示了如何使用 LigerUI 框架中的按鈕、表單、表格和彈窗組件。更多組件和用法,請參考 LigerUI 的官方文檔和示例。

0
叙永县| 墨脱县| 西盟| 六枝特区| 临漳县| 双江| 武城县| 黑山县| 西宁市| 广州市| 宁安市| 定安县| 和平县| 西贡区| 金秀| 麻城市| 岑溪市| 布拖县| 尼木县| 体育| 广丰县| 上犹县| 望奎县| 安徽省| 江都市| 神池县| 孟连| 菏泽市| 桦川县| 思茅市| 博罗县| 铁岭市| 亚东县| 洞头县| 沙雅县| 兰考县| 雅江县| 乌拉特中旗| 海门市| 桃源县| 馆陶县|