1.0.2 • Published 4 years ago

custom-login-web-component v1.0.2

Weekly downloads
3
License
ISC
Repository
github
Last release
4 years ago

#Custom Login Bootstrap 4 Web Component

Custom Login Bootstrap 4 Test Web Component It is used to predefined Bootstrap Login Component

Installation npm i custom-login-web-component

Usage

<template>
  <div id="app">
    <CustomLogicWc @login="login($event)"/>
  </div>
</template>

<script>
import CustomLogicWc from 'custom-login-web-component'

export default {
  name: 'App',
  components: {
    CustomLogicWc
  },
  methods: {
    login(event) {
      console.log("Email ", event.email, ", Password ", event.password)
    }
  }
}
</script>

<style>

</style>