A hooks library based on Vue Composition-API


Keywords
vueposu, vue, hook, hooks, use, usehook, usehooks, use-hook, use-hooks, vue use, vue-use, vue hook, vue-hook, vue hooks, vue-hooks, composition api, composition-api, vue-composition-api, vue composition api, swr, vue swr, vue-swr, vue-compostion-api, vue-hooks-library
License
MIT
Install
npm install vueposu@0.4.5

Documentation


logo

VUEPOSU

🧭  Vue's Eternal Pose (永久指针, 永久指針エターナルポース, Etānaru Pōsu)
(A hooks library based on Vue Composition-API)

workflow codecov


📦 INSTALLATION

Vueposu supports both Vue 3 and 2, but if you are using Vue 2 must ensure installed @vue/composition-api.

Vue 3

# install with npm
npm i vueposu

# install with yarn
yarn add vueposu

Vue 2

# install with npm
npm i vueposu @vue/composition-api

# install with yarn
yarn add vueposu @vue/composition-api

🍳 USAGE

import { useCounter } from "vueposu";

const Component = defineComponent({
  setup() {
    // create a counter
    const { count, inc, dec, set, reset } = useCounter(0);

    return {
      count,
      inc,
      dec,
      set,
      reset,
    };
  },
});

🚀 API

Currently supported functions:


Thanks

In no particular order, vueposu is inspired by these great awesome works:


License

The MIT License.