0.0.8 • Published 10 months ago

@upmind-automation/headless-vue v0.0.8

Weekly downloads
-
License
UNLICENSED
Repository
-
Last release
10 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

10 months ago

0.0.7

10 months ago

0.0.5

11 months ago

0.0.3

12 months ago

0.0.4

12 months ago

0.0.2

1 year ago