Skip to content

Commit

Permalink
Add a README
Browse files Browse the repository at this point in the history
  • Loading branch information
JackWilb committed Dec 17, 2022
1 parent a16907e commit 8472f00
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Multinet Components

This repo bundles re-useable multinet components. So far we support:

- LoginMenu.vue

The components can be used in your application.

## Installation

```
yarn add multinet-components
```

Inside your vue components:
```
<script setup>
import { LoginMenu } from 'multinet-components';
</script>
<template>
<login-menu
:user-info="user"
:oauth-client="oauth"
:logout="logout"
:fetch-user-info="fetchUserInfo"
/>
</template>
```

0 comments on commit 8472f00

Please sign in to comment.