0.0.3 • Published 3 years ago

@enjine/vue-authic v0.0.3

Weekly downloads
-
License
-
Repository
-
Last release
3 years ago

authic

The Interoperable Authentification Instance including Identity Profiles Components

Usage

Install

npm i @enjine/vue-authic

Vue Component

<template>
  <div>
    <authic
      :network="{ name: '', host: '', logo: '' }"
      :instance="{ name:'', url: '', logo: '' }"
      home="/"/>
  </div>
</template>

<script>
import { Authic } from './components/index.vue'

export default {
  components: {
    Authic
  }
}
</script>

<style>
</style>

Development

Project setup

git clone git@github.com:AwesomeEcosystem/authic.git
cd authic
npm install

Compiles and hot-reloads for development

npm run serve

Compiles and minifies for production

npm run build

Run your unit tests

npm run test:unit

Run your end-to-end tests

npm run test:e2e

Customize configuration

See Configuration Reference.