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

dx-test-pro

v1.200.632

Published

A unified template used to backend management based on Vue3.0 + Ant Design Vue + Vite.

Downloads

3

Readme

A unified template used to backend management based on Vue3.0 + Ant Design Vue + Vite

npm package npm_downloads MIT webpack vue vite axios ant design vue vue router vuex

关于

Makeit Admin Pro,基于 Vue3.0 + Vite 开发,结合 Ant Design Vue 组件库开发的一套适合中后台管理项目的统一 UI 框架,包含统一的页面布局 / 注册页面 / 登录页面 / 验证码 / 搜索联想 / 动态配置项目菜单等常用模块,开箱即用。集成这套框架的目的,就是为了免去那些中后台管理项目中,基础又重复的页面,包括布局,登录注册页面等等,同时也集成了项目开发中常用的工具类函数,方便调用及扩展。现阶段还在不断完善,持续开发更新中 ...

若对框架的使用有更好的建议,或者有更多的定制化需求,亦或者组件存在 BUG,欢迎来 这里issues,我将尽快抽时间去完善,去解决 BUG,不胜感激。

安装

npm i makeit-admin-pro

使用

import { createApp } from 'vue'
import { createStore } from 'vuex'
import router from './router'
import MakeitAdminPro from 'makeit-admin-pro'
import App from './app.vue'
import 'ant-design-vue/dist/antd.css'
import 'makeit-admin-pro/dist/miitvip.min.css'

const app = createApp(App)
app.use(router)
app.use(createStore({}))
app.use(MakeitAdminPro)
app.mount('#app')

布局

<template>
    <mi-layout></mi-layout>
</template>

登录

<template>
    <mi-login :action="api.login"></mi-login>
</template>

注册

<template>
    <mi-register :action="api.register"></mi-register>
</template>

更多

更多内容及使用请查看在线示例:https://admin.makeit.vip