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

vuenus-tablelist

v0.1.6

Published

## Intall ``` bash npm install vuenus-tablelist --save ```

Downloads

2

Readme

vuenus-tablelist

Demo

https://piedasing.github.io/vuenus-tablelist/

Intall

npm install vuenus-tablelist --save

Import

import Vue from "vue";
import VuenusTableList from "vuenus-table-list";

Vue.component("vuenus-table-list", VuenusTableList);

Usage

<template>
    <vuenus-table-list
        :columns="columns"
        :rows="rows"
    ></vuenus-table-list>
</template>

<script>
export default {
    data() {
        return {
            columns: [
                {
                    field: "img",                    // 欄位名稱, rows 內的 key 要分別與此相同
                    label: "Thumbnail",              // th 顯示的名稱
                    type: "img",                     // 欄位類型 (text -> 純文字 、 html -> 含有標籤的內容 、 img -> 圖片 、 date -> 時間格式)
                    thClass: "gull-th-class",        // 綁在 th 的 class (空格隔開),可省略
                    thStyle: "width:150px;",         // 綁在 th 的 style (寫法跟 inline-style 一樣,分號隔開),可省略
                    tdClass: "",                     // 綁在 td 的 class,可省略
                    tdStyle: ""                      // 綁在 th 的 style,可省略
                },
                {
                    field: "title",
                    label: "Title",
                    type: "text"
                },
                {
                    field: "createdAt",
                    label: "Created On",
                    type: "date",
                    dateOutputFormat: "MMM DD, YYYY" // 只有 type = date 才有作用,用來顯示該欄位的時間格式,預設為 YYYY-MM-DD,可省略
                },
                {
                    field: "checkbox",
                    label: "勾選",
                    type: "checkbox"
                }
            ],
            rows: [
                {
                    id: 1,
                    img: require("@/assets/images/products/speaker-1.jpg"),    // 欄位內容, key 要與 column 定義的欄位 field 一樣
                    title: "Wireless Bluetooth V4.0 Portable Speaker with HD Sound and Bass",
                    createdAt: "2018-10-29",
                    checkbox: false
                },
                {
                    id: 2,
                    img: require("@/assets/images/products/speaker-2.jpg"),
                    title: "Portable Speaker with HD Sound",
                    createdAt: "2011-10-31",
                    checkbox: false,
                    slot: { // 塞在對應欄位之後的內容,可以用 html,可省略
                        img: `<button class="btn-sm btn-primary mt-1">Button</button>`,
                        title: `<p style="color: #3377ff; font-weight: bold;">test</p>`
                    }
                },
                {
                    id: 3,
                    img: require("@/assets/images/products/headphone-2.jpg"),
                    title: "Lightweight On-Ear Headphones - Black",
                    createdAt: "2011-10-30",
                    checkbox: false
                },
                {
                    id: 4,
                    img: require("@/assets/images/products/watch-1.jpg"),
                    title: "Automatic-self-wind mens Watch 5102PR-001 (Certified Pre-owned)",
                    createdAt: "2011-10-11",
                    checkbox: false
                },
                {
                    id: 5,
                    img: require("@/assets/images/products/watch-1.jpg"),
                    title: "Automatic-self-wind mens Watch 5102PR-001",
                    createdAt: "2011-10-21",
                    checkbox: false
                },
                {
                    id: 6,
                    img: require("@/assets/images/products/headphone-3.jpg"),
                    title: "On-Ear Headphones - Black",
                    createdAt: "2011-10-31",
                    checkbox: false
                }
            ]
        }
    }
}
</script>