insurance-components-library
v2.1.5
Published
This is a custom components library, that is part of a proof of concept with Vue 3, that aims to show one of many ways to design a microfrontend, and at the same time use a NPM library with custom components.
Downloads
17
Maintainers
Readme
Insurance components Library
This is a custom components library, that is part of a proof of concept with Vue 3, that aims to show one of many ways to design a microfrontend, and at the same time use a NPM library with custom components.
The components on this library were developed reusing some technologies that already exists, like ag-grid and element-plus
Configuration
To install this package, you must run the following command:
pnpm install insurance-components-library
After running the install command, you must import this library styles on your App.vue, inserting this line in some point:
import "insurance-components-library/dist/style.css";
Components
Table
To use a table, you must do basically the following
<template>
<Table
style="width: 100%; height: 80vh"
class="ag-theme-alpine"
:columnDefs="columnDefs"
@grid-ready="onGridReady"
:defaultColDef="defaultColDef"
:autoGroupColumnDef="autoGroupColumnDef"
:groupDisplayType="groupDisplayType"
:showOpenedGroup="true"
:animateRows="true"
:rowData="rowData"
></Table>
</template>
<script lang="ts">
import { Table } from "insurance-components-library";
</script>
All the table component props you can check on ag-grid documentation
Button
To use a button, you must do basically the following
<template>
<Button type="primary" @click="anyFunction">Search</Button>
</template>
<script lang="ts">
import { Button } from "insurance-components-library";
</script>
All the button component props you can check on element-plus documentation
Input text
To use an input text, you must do basically the following
<template>
<Input
v-model="yourVariable"
class="anyClass"
placeholder="Any placeholder"
></Input>
</template>
<script lang="ts">
import { Input } from "insurance-components-library";
</script>
All the input text component props you can check on element-plus documentation