0.3.9 • Published 9 months ago

xph-crud v0.3.9

Weekly downloads
-
License
ISC
Repository
github
Last release
9 months ago

引入

npm install xph-crud --save
yarn add xph-crud
pnpm install xph-crud --save

用法

引入 xph-crud 全局样式

/** main.tsx */

import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App.tsx";
/** 引入 xph-crud 全局样式 */
import "xph-crud/dist/style.css";

ReactDOM.createRoot(document.getElementById("root")!).render(
  <React.StrictMode>
    <App />
  </React.StrictMode>
);

组件使用

/** App.tsx */

import { XphForm, IXphFormProps } from "xph-crud";

function App() {
  const formProps: IXphFormProps = {
    items: [
      {
        name: "name",
        label: "姓名",
        component: "Input",
      },
    ],
  };
  return (
    <>
      <XphForm {...formProps}></XphForm>
    </>
  );
}

export default App;

注意事项

xph-crud 是基于 ant-design、ant-design-icons 开发的组件库,所以使用时需同时引入 antd@ant-design/icons

0.3.9

9 months ago

0.3.6

9 months ago

0.3.5

9 months ago

0.3.8

9 months ago

0.3.7

9 months ago

0.3.4

9 months ago

0.3.3

9 months ago

0.3.0

11 months ago

0.2.7

11 months ago

0.2.6

11 months ago

0.2.9

11 months ago

0.2.8

11 months ago

0.3.2

9 months ago

0.3.1

10 months ago

0.2.5

11 months ago

0.2.4

11 months ago

0.2.3

11 months ago

0.2.2

11 months ago

0.2.1

11 months ago

0.2.0

11 months ago

0.1.9

11 months ago

0.1.8

11 months ago

0.1.7

11 months ago

0.1.6

11 months ago

0.1.5

11 months ago

0.1.4

11 months ago

0.1.3

11 months ago

0.1.2

11 months ago

0.1.1

12 months ago

0.1.0

12 months ago

0.0.9

12 months ago

0.0.8

12 months ago

0.0.7

12 months ago

0.0.6

12 months ago

0.0.5

12 months ago

0.0.4

12 months ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago