@t1ep1l0t/vue
v1.0.2
Published
Collection of essential typescript utilities for Vue3/Nuxt3.
Maintainers
Readme
Description
@t1ep1l0t/vue is a collection of universal reactive Typescript utilities for Vue3/Nuxt3. Depends on @t1ep1l0t/core.
Usage
# Installing packages
npm install @t1ep1l0t/core @t1ep1l0t/vue
# OR
yarn add @t1ep1l0t/core @t1ep1l0t/vue
# OR
bun install @t1ep1l0t/core @t1ep1l0t/vue<script lang="ts">
// Import some from package
import { useScroll } from '@t1ep1l0t/vue';
const { x, y } = useScroll();
</script>
<template>
<div>
<p>Horizontal scrolling (x): {{x}}px</p>
<p>Vertical scrolling (y): {{y}}px</p>
</div>
</template>Questions
For questions and support please use the Telegram. The issue list of this repo is exclusively for bug reports and feature requests.
Stay in touch
- Author - Andrey Alekseev
- Website - https://t1ep1l0t.com
License
@t1ep1l0t/vue is MIT licensed.
