0.0.8 • Published 4 months ago

@upmind-automation/headless-vue v0.0.8

Weekly downloads
-
License
UNLICENSED
Repository
-
Last release
4 months ago

Getting Started

Prerequisites

headless-vue is a collection of Vue 3 composables.

  • If you don't have a Vue 3 app, have a look at Vue Quick Start guide.

  • We also assume that you are familiar with the basic concepts of the Composition API.

Installation

npm i @upmind-automation/headless-vue

Usage simple example

Simply importing the composables (functions) you need from @upmind-automation/headless-vue.

<script setup>
import { useSession } from "@upmind-automation/headless-vue";

const { meta, errors, showLogin, verify2fa, resolve, reject } = useSession();

return {
  meta,
  errors,
  showLogin,
  showRegister,
  verify2fa,
  resolve,
  reject,
};
</script>

API Reference

Refer to all functions list for more details.

0.0.8

4 months ago

0.0.7

4 months ago

0.0.5

6 months ago

0.0.3

6 months ago

0.0.4

6 months ago

0.0.2

9 months ago