dog-tables
Version:
A simple and beauty JS Table for Vue and Laravel
20 lines (15 loc) • 318 B
HTML
<meta charset="utf-8">
<title>dogTables demo</title>
<script src="https://unpkg.com/vue"></script>
<script src="./dogTables.umd.js"></script>
<link rel="stylesheet" href="./dogTables.css">
<div id="app">
<demo></demo>
</div>
<script>
new Vue({
components: {
demo: dogTables
}
}).$mount('#app')
</script>