
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
best-vue-table
Advanced tools
Best date table for vue2
npm(need to upload to npm)
For now, you can down /dist/vue-table.umd(.min).js
As the name shows, it is a UMD bundle!! So you can import/require or just use script tag!
and use
<vue-table :columns="todoTable.columns" :options="todoTable.options" :source="todoTable.source"></vue-table>
import {vueTable} from './vue-table.umd.min.js'
let app = new Vue({
el: "#app",
components: {
vueTable: vueTable
},
data: {
todoTable: {
options:{
styleType:'semantic', //e.g. semantic bootstrap
style:{/*see src/style.js */}
},
columns: ["id", {name: "desc",display:'Desc'}, {
name: "op", format: function (row) {
return '<button>OP</button>';
}
}],
// Promise mode
// source:function(params) {
// return new Promise.resolve([{id:1,desc:'happy to use vue-table'},{id:2,desc:'happy to use vue-table'}])
// },
// Data mode
source:[{id:1,desc:'happy to use vue-table'},{id:2,desc:'happy to use vue-table'}]
// Api mode
// source: {apiUrl: "/data/mock.json", method: "GET"}
}
}
});
FAQs
Best data table for vue.
We found that best-vue-table demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.