Skip to content

Commit e2c0196

Browse files
committed
update library name
1 parent aeaf85f commit e2c0196

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# vue-datatable-net
1+
# vue-datatables-net
22
> Vue jQuery DataTable.net component
33
44
This library is simply a wrapper for [jQuery DataTable](https://datatables.net/). It's a tiny package that doesn't include anything, not even the datatable.net core library. Per example below, you basically have to include any/only datatable.net package(s) that you need.
@@ -15,7 +15,7 @@ Or simply with url that is a can handle datatable.net server-side api endpoint:
1515
</template>
1616

1717
<script>
18-
import VdtnetTable from 'vue-datatable-net'
18+
import VdtnetTable from 'vue-datatables-net'
1919
import 'datatables.net-bs4'
2020
2121
export default {

index.html

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,15 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8">
5-
<title>vue-datatable-net</title>
5+
<title>vue-datatables-net</title>
66
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
77
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
8-
<link href='https://fonts.googleapis.com/css?family=Lato:300,400,700' rel='stylesheet' type='text/css'>
98
<link rel="stylesheet" href='https://cdn.datatables.net/1.10.19/css/dataTables.bootstrap4.min.css'>
109
<link rel="stylesheet" href="https://cdn.materialdesignicons.com/2.8.94/css/materialdesignicons.min.css">
11-
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
1210
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js"></script>
1311
</head>
1412
<body>
1513
<div id="app"></div>
16-
<script src="./dist/build.js"></script>
14+
<script src="dist/build.js"></script>
1715
</body>
1816
</html>

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"name": "vue-datatable-net",
3-
"description": "Vue jQuery DataTable.net component for bootstrap4",
2+
"name": "vue-datatables-net",
3+
"description": "Vue jQuery DataTable.net wrapper component ",
44
"version": "1.0.0",
55
"author": "[email protected]",
66
"license": "MIT",
7-
"main": "lib/vue-datatable-net.min.js",
7+
"main": "lib/vue-datatables-net.min.js",
88
"files": [
99
"lib"
1010
],

0 commit comments

Comments
 (0)