@truongdq54/vaislib-nuxt
v1.1.0-rc69.5
Published
VAIS library for building webapp
Downloads
435
Readme
Features
- ⛰ useApi: makeRequest, makeRequestParallel
Quick Setup
- Add
@truongdq54/vaislib-nuxt
dependency to your project
# Using pnpm
pnpm add -D @truongdq54/vaislib-nuxt
# Using yarn
yarn add --dev @truongdq54/vaislib-nuxt
# Using npm
npm install --save-dev @truongdq54/vaislib-nuxt
- Add
@truongdq54/vaislib-nuxt
to themodules
section ofnuxt.config.ts
export default defineNuxtConfig({
modules: ["@truongdq54/vaislib-nuxt"],
});
Development
# Install dependencies
npm install
# Generate type stubs
npm run dev:prepare
# Develop with the playground
npm run dev
# Build the playground
npm run dev:build
# Run ESLint
npm run lint
# Run Vitest
npm run test
npm run test:watch
# Release new version
npm run release