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

vue2-client

v1.8.142

Published

基于Vue Antd Admin封装的通用基础组件

Downloads

1,452

Readme

vue2-client

基于Vue Antd Admin封装的通用基础组件

完整引入

import Vue from 'vue'
import App from './App.vue'
import Router from 'vue-router'
import Vuex from 'vuex'
import '@vue2-client/mock'
import { routerOptions, modules, i18n, message, bootstrap } from 'vue2-client'

Vue.use(Router)
Vue.use(Vuex)
// 创建router store
const store = new Vuex.Store({ modules })
const router = new Router(routerOptions)

bootstrap({ router, store, i18n, message })
new Vue({
  router,
  store,
  i18n,
  render: h => h(App)
}).$mount('#app')

注意引入项目请添加webpack别名配置
config.resolve.alias.set('@vue2-client', path.resolve(__dirname, 'node_modules/vue2-client/src'))

目录结构

├── docs                     # 文档
├── public
│   └── favicon.png          # favicon
│   └── index.html           # 入口 HTML
├── src
│   ├── assets               # 本地静态资源
│   ├── base-client          # 基础组件和基础vue插件(全局注册)
│   ├── components           # 内置通用组件(按需引入)
│   ├── config               # 系统配置
│   ├── layouts              # 通用布局组件(按需引入)
│   ├── mock                 # 本地 mock 数据
│   ├── pages                # 页面组件
│   ├── router               # 路由配置
│   ├── services             # 数据服务模块
│   ├── store                # vuex 状态管理配置
│   ├── theme                # 主题样式相关
│   ├── utils                # js 工具
│   ├── App.vue              # 应用入口组件
│   ├── bootstrap.js         # 应用启动引导js
│   ├── index.js             # 应用导出js
│   └── main.js              # 应用入口js
├── tests                    # 单元测试  
├── package.json             # package.json
├── README.md                # README.md
└── vue.config.js            # vue 配置文件

文档入口

入口