New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

cry-table

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cry-table

> 一个基于vue、element-ui的表格组件demo

latest
npmnpm
Version
0.0.9
Version published
Maintainers
1
Created
Source

cry-table

一个基于vue、element-ui的表格组件demo

https://github.com/cairuoyu/cry-table

image

功能

  • 行内编辑
  • 行内级联下拉
  • 行内自定义显示隐藏按钮
  • 隐藏显示列
  • ...

安装

npm i
或者
yarn

运行

npm run dev

访问

http://localhost:8082/

例子

<template>
  <cry-table :listConfig="listConfig" :listData="listData" />
</template>

<script>
export default {
  data() {
    return {
      listData: [],
      listConfig: {
        columns: [
          { prop: 'country', label: '国家' },
          { prop: 'province', label: '省份' },
          { prop: 'city', label: '城市' }
        ]
      }
    }
  },
  created() {
    this.listData = [
      {
        country: '中国',
        province: '广东省',
        city: '广州市'
      }
    ]
  }
}
</script>

live demo

http://cairuoyu.com/cry-table/

FAQs

Package last updated on 16 Jun 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts