-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (29 loc) · 866 Bytes
/
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
<html>
<head>
<link rel="stylesheet" href="https://unpkg.com/devextreme@18.1-unstable/dist/css/dx.common.css" />
<link rel="stylesheet" href="https://unpkg.com/devextreme@18.1-unstable/dist/css/dx.material.blue.light.css" />
<script src="https://unpkg.com/systemjs@0.19.31/dist/system.js"></script>
<script type="text/javascript" src="config.js"></script>
<script type="text/javascript">
System.import('./index.js');
</script>
</head>
<body>
<div id="app">
<span v-if="false">Loading...</span>
<dx-data-grid
key-expr="orderId"
:allow-column-reordering="true"
:grouping="grouping"
:group-panel="groupPanel"
:paging="paging"
:selection="selection"
:filter-row="filterRow"
:data-source="sales"
:selected-row-keys="selectedKeys"
:columns="columns"
>
</dx-data-grid>
</div>
</body>
</html>