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

vxe-table-select-area

v1.0.4

Published

一个基于 vxe-table 的可区域选中复制、粘贴的组件

Downloads

23

Readme

vxe-table-select-area

浏览器支持

IE | Edge | Chrome | Firefox | Opera | Safari --- | --- | --- | --- | --- | --- | 11+ ✔ | 80+ ✔ | 80+ ✔ | 90+ ✔ | 75+ ✔ | 10+ ✔ |

功能点

  • [x] 基础表格
  • [x] 高级表格
  • [x] 斑马线条纹
  • [x] 多种边框
  • [x] 单元格样式
  • [x] 列宽拖动
  • [x] 最大高度
  • [x] 自适应宽高
  • [x] 固定列
  • [x] 多级表头
  • [x] 表尾数据
  • [x] 高亮行或列
  • [x] 序号
  • [x] 单选框
  • [x] 复选框
  • [x] 下拉选项
  • [x] 开关
  • [x] 排序
  • [x] 多字段排序
  • [x] 筛选
  • [x] 合并单元格
  • [x] 合并表尾
  • [x] 导入/导出/打印
  • [x] 显示/隐藏列
  • [x] 加载中
  • [x] 格式化内容
  • [x] 自定义插槽 - 模板
  • [x] 快捷菜单
  • [x] 展开行
  • [x] 分页
  • [x] 表单
  • [x] 工具栏
  • [x] 下拉容器
  • [x] 虚拟列表
  • [x] 虚拟树
  • [x] 增删改查
  • [x] 数据校验
  • [x] 数据代理
  • [x] 键盘导航
  • [x] 弹窗
  • [x] 渲染器
  • [x] 虚拟滚动
  • [x] 虚拟合并
  • [x] (pro) 单元格区域选取
  • [x] (pro) 单元格复制/粘贴
  • [x] (pro) 单元格查找和替换

npm

import Vue from 'vue'
import VXETable from 'vxe-table-select-area'
import 'vxe-table-select-area/lib/style.css'

Vue.use(VXETable)

示例

<template>
  <div>
    <vxe-table :data="tableData">
      <vxe-column type="seq" title="Seq" width="60"></vxe-column>
      <vxe-column field="name" title="Name"></vxe-column>
      <vxe-colgroup title="Group1">
        <vxe-column field="sex" title="Sex"></vxe-column>
        <vxe-column field="address" title="Address"></vxe-column>
      </vxe-colgroup>
    </vxe-table>
  </div>
</template>

<script>
export default {
  data () {
    return {
      tableData: [
        { id: 10001, name: 'Test1', role: 'Develop', sex: 'Man', address: 'Shenzhen' },
        { id: 10002, name: 'Test2', role: 'Test', sex: 'Man', address: 'Guangzhou' },
        { id: 10003, name: 'Test3', role: 'PM', sex: 'Man', address: 'Shanghai' }
      ]
    }
  }
}
</script>

文档

运行项目

安装依赖

npm run update

启动本地调试

npm run serve

编译打包,生成编译后的目录:lib

npm run lib

License

MIT © 2023-present, zt