forked from webdevnerdstuff/vuetify-drilldown-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (29 loc) · 1.42 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
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-E33J8HFMVS"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-E33J8HFMVS');
</script>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vuetify-logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vuetify Drilldown Table</title>
<meta name="description"
content="The Vuetify Drilldown Table is a powerful component that enhances the functionality of the Vuetify framework's VDataTable and VDataTableServer. It provides a recursive table structure, allowing you to display hierarchical data in a nested format." />
<meta name="keywords"
content="vuetify-drilldown-table, VDrilldownTable, v-drilldown-table, v-data-table, VDataTable, VDataTableServer, drilldown table, vuetify, vuetify3, api,drawer, resize, resizable, vue, vue3, component, javascript, typescript, webdevnerdstuff, wdns" />
<meta name="author" content="WebDevNerdStuff & Bunnies... lots and lots of bunnies!" />
<meta name="robots" content="index, follow" />
<meta name="googlebot" content="index, follow" />
<meta name="theme-color" content="#0d47a1" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>