-
Notifications
You must be signed in to change notification settings - Fork 58
/
index.html
executable file
·22 lines (21 loc) · 1.11 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>vue-datatables-net demo</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdn.datatables.net/1.11.5/css/dataTables.bootstrap5.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vue@next/dist/vue.global.js"></script>
</head>
<body>
<nav class="navbar navbar-light bg-light justify-content-between">
<a class="navbar-brand" href="https://github.com/niiknow/vue-datatables-net">Vue DataTables Net - View on Github</a>
<iframe src="https://ghbtns.com/github-btn.html?user=niiknow&repo=vue-datatables-net&type=star&count=true&size=large" frameborder="0" scrolling="0" width="160px" height="30px"></iframe>
</nav>
<div style="padding-bottom: 10px"> </div>
<div id="app"></div>
<script src="example/index.js"></script>
</body>
</html>