Skip to content

kalu5/vuetkit

Repository files navigation

VueTkit - Collection of business development tools for Vue3 projects
Collect commonly used Composable Utilities, Shared Utilities, and Composable Components in development.

NPM version NPM Downloads Docs & Demos
GitHub stars

🚀 Features

📦 Install

# npm
npm install @vuetkit/core

# yarn
yarn add @vuetkit/core

# pnpm
pnpm add @vuetkit/core

🦄 Usage

Simply import the hook you need from @vuetkit/core.

<script setup lang="ts">
import { useRequest } from '@vuetkit/core'
import axios from 'axios'

function asyncSevice() {
  return axios.get('/api/data')
}

const { data, loading, error } = useRequest(asyncSevice)
</script>

🌸 Thanks

This project is heavily inspired by the following awesome projects.

📝 License

MIT License © 2026-PRESENT Kalu5

About

Collection of business development tools for Vue3 projects

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages

Generated from kalu5/library-template