Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit adfa2f1

Browse files
committed
update manual book
1 parent aa32be3 commit adfa2f1

File tree

6 files changed

+118115
-4
lines changed

6 files changed

+118115
-4
lines changed

public/css/app.css

Lines changed: 8346 additions & 3 deletions
Large diffs are not rendered by default.

public/dosen.pdf

1.21 MB
Binary file not shown.

public/js/app.js

Lines changed: 109753 additions & 1 deletion
Large diffs are not rendered by default.

public/mahasiswa.pdf

1.1 MB
Binary file not shown.

resources/assets/js/components/lecturer/Layout.vue

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,10 @@
8787
</v-toolbar-title>
8888

8989
<v-spacer></v-spacer>
90+
<v-btn color="info" class="white--text" @click="manualBook" >
91+
<v-icon>book</v-icon>
92+
Manual book
93+
</v-btn>
9094
<v-menu bottom left full-width>
9195
<v-avatar slot="activator" @click="logout">
9296
<v-icon >logout</v-icon>
@@ -143,6 +147,9 @@
143147
logout() {
144148
let base_url = window.location.origin
145149
window.location.href = base_url+'/logout'
150+
},
151+
manualBook() {
152+
window.open('/dosen.pdf', '_blank')
146153
}
147154
}
148155
}

resources/assets/js/components/student/Layout.vue

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,17 @@
5858
</v-toolbar-title>
5959

6060
<v-spacer></v-spacer>
61+
62+
<v-btn color="info" class="white--text" @click="manualBook" >
63+
<v-icon>book</v-icon>
64+
Manual book
65+
</v-btn>
6166
<v-menu bottom left full-width>
6267
<v-avatar slot="activator" @click="logout">
6368
<v-icon >logout</v-icon>
6469
</v-avatar>
6570
</v-menu>
71+
6672
</v-toolbar>
6773
<!-- end of toolbar -->
6874

@@ -106,6 +112,9 @@
106112
logout() {
107113
let base_url = window.location.origin
108114
window.location.href = base_url+'/logout'
115+
},
116+
manualBook() {
117+
window.open('/mahasiswa.pdf', '_blank')
109118
}
110119
},
111120
mounted() {

0 commit comments

Comments
 (0)