-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdashboard.php
More file actions
34 lines (25 loc) · 885 Bytes
/
dashboard.php
File metadata and controls
34 lines (25 loc) · 885 Bytes
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
<?php
namespace Vanderbilt\AdvancedImport;
$page = new \HtmlPage();
$page->PrintHeaderExt();
include APP_PATH_VIEWS . 'HomeTabs.php';
$module_path = $module->getModulePath();
include($module_path.'header.php');
?>
<script src="<?=APP_PATH_JS?>vue.min.js"></script>
<script src="<?= $module->getUrl('./assets/js/advanced_import/dist/advanced_import.umd.js'); ?>"></script>
<link rel="stylesheet" href="<?= $module->getUrl('./assets/js/advanced_import/dist/advanced_import.css'); ?>">
<div id="advanced-import-container">
<advanced-import></advanced-import>
</div>
<script>
(function() {
const app = new Vue({
render: h => h(advanced_import),
}).$mount('#advanced-import-container')
window.advancedImportComponent = app.$children[0]
}(window.advancedImportComponent = window.advancedImportComponent || {}))
</script>
<?php
$page->PrintFooterExt();
?>