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

vue-sheet

v1.0.22

Published

A Vue.js project

Downloads

12

Readme

vue-sheet

A vis-vui-table component for Vue.js.

install

  npm install vue-sheet

Usage

import Vue from 'vue'
import {Sheet, Column} from 'vue-Sheet'

Vue.use(Sheet)
vue.use(Column)

or

import Vue from 'vue'
import { Sheet, Column } from 'vue-Sheet'

Vue.component('Sheet', Sheet)
Vue.component('Column', Column)

Table Attributes

| 参数 | 说明 | 类型 | 可选值 | 默认值 | |---------- |-------------- |---------- |-------------------------------- |-------- | | data | 显示的数据 | array | — | — | | checkValue | 选择对应的值(没有这个属性,默认没有全选功能)属性。 | Array | - | - | | checkKey | 对应data哪个key的做为选择值。 | String | - | - |

Cell Attributes

| 参数 | 说明 | 类型 | 可选值 | 默认值 | |---------- |-------------- |---------- |-------------------------------- |-------- | | type | 对应列的类型。 | string | string/link/button/box... | — | | header | 显示的标题 | string | — | — | | key | 对应列内容的字段名 | string | — | — | | style | 对应列的样式 | object | — | — | | class | 对应列的class | string | — | — | | inline-template | 标记为自定义标签,可以在标签内写任意的其它标签 | - | — | — | | option | 传入设置参数,当标签属性中有inline-template,可以为标签内的无素传递外部的属性,通过"option.***" 引用 | object | — | — |

type

type 可以是默认提供的string/link/button

string

type = "string" 显示一个字符串,对应的 key="***",可以读取到data下的值

link

type = "link" 一个连接,:option = '{target: '_blank', text: '编辑', path: '/vis/normal/:id', params: {id: '$id'}, queries: {action: 'save'}}' href 的参数对应与v-link相同

inline-template

inline-template 标记为自定义标签,可以在标签内写任意的其它标签,在标签内可以通过$value,来读取行数据

##example

<template>
  <div id="demo">
    <h1>Sheet</h1>
    <p>
      <label v-for="d in display">
        <input
          type="checkbox"
          name="display-chosen"
          :value="d.value"
          v-model="chosen">
        {{ d.text }}
      </label>
      <br>
    </p>
    <sheet class="table sheet" :check-value = "checkValue" :records="students" :hide-column-keys="hideKeys">
      <column header="Name" class="name" key="name"></column>
      <column header="Age" key="age"></column>
      <column header="option" type="link"  :option="{target: '_blank', text: '编辑', path: '/vis/normal/:id', params: {id: '$id'}, queries: {action: 'save'}}"></column>
      <column header="Name+Age" class="desc" inline-template :option="{click: hello}">
        <p>Name: {{ $value.name }}</p>
        <p>Age: {{ $value.age }}</p>
        <button @click="option.click($value.name)">Hello</button>
      </column>
    </sheet>
  </div>
</template>
<script>
import {Column, Sheet} from '../../packages/sheet/index.js'
export default {
  components: {
    Column,
    Sheet
  },
  data: function () {
    return {
      display: [{
        text: 'name',
        value: 'name'
      }, {
        text: 'age',
        value: 'age'
      }],
      chosen: ['name', 'age'],
      students: [
        {id: '339', name: 'hal', age: 30},
        {id: '730', name: 'jim', age: 10},
        {id: '731', name: 'green', age: 20}
      ],
      checkValue: []
    }
  },
  computed: {
    hideKeys () {
      let chosen = this.chosen
      let display = this.display

      return display.filter(d => {
        return chosen.indexOf( d.value ) === -1
      }).map(d => d.value)
    }
  },
  methods: {
    hello (name) {
      window.alert('hello' + name)
    }
  }
}
</script>