Skip to content

Instantly share code, notes, and snippets.

@Adron
Created December 27, 2018 06:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Adron/547e78e9c8d75472e2ff95b11dd3f0d5 to your computer and use it in GitHub Desktop.
Save Adron/547e78e9c8d75472e2ff95b11dd3f0d5 to your computer and use it in GitHub Desktop.
The vue datatable is vuetiful.
new Vue({
el: "#app",
data: function() {
return {
columns: [
{ id: "datatable-column-1", label: "Column 1" },
{ id: "datatable-column-2", label: "Column 2" },
{ id: "datatable-column-3", label: "Column 3" }
]
};
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment