npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vuedashkit

v0.1.31

Published

[![npm version](https://badge.fury.io/js/dash-kit.svg)](https://www.npmjs.com/package/dash-kit) [![GitHub license](https://img.shields.io/github/license/darwishdev/dashkit)](https://github.com/darwishdev/dashkit/blob/main/LICENSE)

Downloads

64

Readme

Dash-kit - Vue.js Admin Panel Framework

npm version GitHub license

Dash-kit is a powerful and feature-rich Vue.js admin panel framework that helps you create stunning and functional admin panels for your web applications. It provides a collection of reusable components, layout options, and utilities to make your admin panel development faster and easier.

Features

  • Flexible Layout Components: Use the AppLayout component to build customizable admin panel layouts with a sidebar, navigation bar, and main content area.

  • Dynamic Sidebar: The AppLayout component automatically generates the sidebar based on the provided app-menu component. Easily customize the sidebar items and behavior.

  • Form Generation: Dash-kit includes a form generation feature powered by FormKit, allowing you to quickly create dynamic forms for data input and management.

  • RTL and LTR Support: Seamlessly switch between right-to-left (RTL) and left-to-right (LTR) layouts based on your application's language direction.

  • Toasts and Dialogs: Integrated support for Dash-kit's Toast and DynamicDialog components, allowing you to display toast messages and create dynamic dialogs in your application.

  • Vue-Router Integration: Easily integrate the AppLayout with Vue Router to manage your application's navigation and routing efficiently.

  • PrimeVue Components: Dash-kit leverages the power of PrimeVue components to provide a polished and modern UI for your admin panel.

Dependencies

Dash-kit relies on the following libraries:

  • FormKit: A flexible form generation library for Vue.js applications.

  • PrimeVue: A rich set of open-source UI components for Vue.js.

Installation

You can install Dash-kit via NPM:

npm install dash-kit --save

Documentation

For detailed documentation and usage examples, visit the Dash-kit website and explore the documentation.

Getting Started

To start using Dash-kit, import the necessary components into your Vue application and set up the AppLayout as the parent component for your routes:

// router/index.js
import { createRouter, createWebHistory } from "vue-router";
import { LoginView, UnauthorizedView } from "dash-kit/views";
import ProfileView from "../views/ProfileView.vue";
import DashboardView from "../views/DashboardView.vue";
import { AppLayout } from "dash-kit/base";

const router = createRouter({
  history: createWebHistory(import.meta.env.BASE_URL),
  routes: [
    {
      path: "/",
      component: AppLayout,
      children: [
        {
          path: "/dashboard",
          name: "dashboard_view",
          component: DashboardView,
        },
        {
          path: "/profile",
          name: "profile_view",
          meta: { breadCrumbs: [{ label: "profile" }] },
          component: ProfileView,
        },
      ],
    },
    {
      path: "/login",
      name: "login",
      component: LoginView,
    },
    {
      path: "/unauthorized",
      name: "unauthorized",
      component: UnauthorizedView,
    },
  ],
});

export default router;

Contributing

We welcome contributions from the community! If you find a bug, have a feature request, or want to contribute code, please follow our contribution guidelines.

License

Dash-kit is open-source software licensed under the MIT License.