114 lines
2.7 KiB
PHP
114 lines
2.7 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Adhi</title>
|
|
<link rel="stylesheet" href="../../../libs/vendor/css/google-fonts.css">
|
|
<link rel="stylesheet" href="../../../libs/vendor/css/vuetify.min.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div v-cloak id="app">
|
|
<v-app id="smartApp">
|
|
<smart-navbar></smart-navbar>
|
|
<v-content>
|
|
<v-container >
|
|
|
|
<v-tabs
|
|
centered
|
|
color="light-green lighten-2
|
|
"
|
|
dark
|
|
icons-and-text
|
|
>
|
|
<v-tabs-slider color="light-green"></v-tabs-slider>
|
|
<v-tab ripple>
|
|
Recents
|
|
<v-icon>phone</v-icon>
|
|
</v-tab>
|
|
<v-tab ripple>
|
|
Favorites
|
|
<v-icon>favorite</v-icon>
|
|
</v-tab>
|
|
<v-tab ripple>
|
|
Nearby
|
|
<v-icon>account_box</v-icon>
|
|
</v-tab>
|
|
|
|
|
|
<v-tab-item>
|
|
<v-card flat>
|
|
<v-card-text>Contents for Item 1 go here</v-card-text>
|
|
</v-card>
|
|
</v-tab-item>
|
|
<v-tab-item>
|
|
<v-card flat>
|
|
<v-card-text>Contents for Item 2 go here</v-card-text>
|
|
</v-card>
|
|
</v-tab-item>
|
|
</v-tabs>
|
|
|
|
</v-container>
|
|
</v-content>
|
|
<v-footer color="light-green" app>
|
|
<span class="white--text">PT. SAS © 2019</span>
|
|
</v-footer>
|
|
</v-app>
|
|
</div>
|
|
|
|
<!-- Vendor -->
|
|
<script src="../../../libs/vendor/axios.min.js"></script>
|
|
<script src="../../../libs/vendor/vue.js"></script>
|
|
<script src="../../../libs/vendor/vuex.js"></script>
|
|
<script src="../../../libs/vendor/vuetify.js"></script>
|
|
<!-- App Script -->
|
|
<?php
|
|
$ts = "?ts=" . Date("ymdhis");
|
|
?>
|
|
<script type="module">
|
|
import { store } from './store.js<?php echo $ts ?>';
|
|
import { smartNavbarComponent } from './components/smartNavbarComponent.js<?php echo $ts ?>';
|
|
// import { tabComponent } from './components/tabComponent.js<?php echo $ts ?>';
|
|
// import { dialogFormComponent } from './components/dialogFormComponent.js<?php echo $ts ?>';
|
|
//for testing
|
|
// window.store = store;
|
|
|
|
new Vue({
|
|
store,
|
|
el: '#app',
|
|
components: {
|
|
'smart-navbar': smartNavbarComponent,
|
|
// 'tab': tabComponent
|
|
// 'dialog-form':dialogFormComponent
|
|
},
|
|
data: {
|
|
drawer: false,
|
|
|
|
},
|
|
data: {
|
|
text: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed',
|
|
|
|
}
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
<style>
|
|
[v-cloak] {
|
|
display: none
|
|
}
|
|
</style>
|
|
</body>
|
|
|
|
</html>
|