Coder Social home page Coder Social logo

0xyza / vue-pincode Goto Github PK

View Code? Open in Web Editor NEW

This project forked from weslinkde/vue-pincode

0.0 0.0 0.0 361 KB

:bank: Neumorphism styled pincode input field for Vue.js

Home Page: https://weslinkde.github.io/vue-pincode/

License: MIT License

JavaScript 21.32% HTML 6.06% Vue 72.62%

vue-pincode's Introduction

@weslink/vue-pincode

VuePincode

Features

๐Ÿš€ See live demo (Pin: 1234 is the right one)

  • Simple pincode input field
  • Neumorphism styling
  • Smooth animations

Installation

In your Vue.js project:

npm install @weslink/vue-pincode
๐Ÿ’ฌ If you prefer static files, import assets from the dist folder

Basic example

Login.vue
<template>
  <div id="app">
    <div class="container">
      <vue-pincode ref="pincodeInput" @pincode="login" />
    </div>
  </div>
</template>

<script>
import axios from 'axios';
import VuePincode from "./components/VuePincode";

export default {
  name: "Login",
  components: {
    VuePincode
  },
  methods: {
    async login(pincode) {
      try {
        const { data } = await axios.post(`/login`, { pincode })
        this.$refs.pincodeInput.triggerSuccess();
        return { success: true, status: data.status }
      } catch (e) {
        this.$refs.pincodeInput.triggerMiss();
        return { success: false, status: e.response.data.status }
      }
    },
  }
};
</script>

Events

Event Description
pincode Is triggered when the pincode is four characters long and passes it as parameter

Project development

  • npm run serve compiles and hot-reloads demo for development
  • npm run lint lints and fixes files
  • npm run build compiles and minifies production files and demo

Licensing

Copyright ยฉ๏ธ 2020 Weslink GmbH, MIT License

Author: Dominik Lenz

vue-pincode's People

Contributors

udaberrico avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.